summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/tests/MyTestCase.php
blob: 43a4762d2358df65725ffa87701f344c0f9d17fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class MyTestCase extends SeleniumTestCase
{
	function test1()
	{
		$this->open('http://127.0.0.1');
		$this->assertTextNotPresent('asd');
	}

	function test2()
	{
		$this->skipBrowsers(self::FIREFOX);
		$this->open('http://127.0.0.1');
		$this->assertTextNotPresent('asd');
	}
}

?>