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