blob: 82d3ad2486d6df6b4e412fcdc3f2b2bd9c356488 (
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
}
}
?>
|