1: <?php
2: namespace Azalea\Selenium\EHR;
3:
4: class EHRTestCase extends \Azalea\Selenium\Core\BaseTestCase
5: {
6: protected static $tags = array("ehr");
7:
8: /**
9: * Asserts if an error popup is visible on the screen.
10: * @param \Azalea\Selenium\EHR\Application $app
11: */
12: public function assertNoErrorPopup($app)
13: {
14: $this->assertFalse($app->isErrorPopup());
15: }
16: }
17: ?>