summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/ExpressionTestCase.php
blob: dfa1036fe81b984546896a28bba4fa6502efc221 (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&amp;notheme=true", "");

		$this->verifyTitle("PRADO QuickStart Sample", "");

		$this->verifyTextPresent('PRADO QuickStart Sample');
	}
}

?>