blob: b8f322d7b11eb18cfc71a2c3192a08e833fbe59a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | <?php
class StatementsTestCase extends SeleniumTestCase
{
	function test ()
	{
		$this->open("../../demos/quickstart/index.php?page=Controls.Samples.TStatements.Home&notheme=true&lang=en", "");
		$this->verifyTitle("PRADO QuickStart Sample", "");
		$this->verifyTextPresent('UniqueID is \'ctl0$body$ctl0\'');
	}
}
?>
 |