summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/features/tests/MyTestCase.php
blob: 92b0886a4ad1d97cb72c0dbfea89709a61fc0813 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

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