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