blob: a7c4c579a627e695f79bfc6ab2251548297bd43d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | <?php
class QuickstartStatementsTestCase extends PradoGenericSeleniumTest
{
	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\'');
	}
}
 |