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