summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/quickstart/Controls/StatementsTestCase.php
blob: df0e6f89e727c33cd4520416824bd7b9989891b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class QuickstartStatementsTestCase extends PradoGenericSelenium2Test
{
	function test ()
	{
		$this->url("../../demos/quickstart/index.php?page=Controls.Samples.TStatements.Home&amp;notheme=true&amp;lang=en");

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

		$this->assertContains('UniqueID is \'ctl0$body$ctl0\'', $this->source());
	}
}