summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/tests/MyTestCase.php
blob: cb26d709c7f0b02ed20aeaf067a639051c8736ac (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');
	}
}

?>