1: <?php
2: use Azalea\Selenium\App\ApplicationTestCase;
3: use Azalea\Selenium\App\Patients;
4: use Azalea\Selenium\App\Providers;
5: use Azalea\Selenium\App\Users;
6:
7: class ExampleTestCase extends ApplicationTestCase
8: {
9: public function testApplicationLogin()
10: {
11: $this->login(Users::FELIX_MILLER, Users::PASSWORD);
12: }
13: }
14:
15: ?>