blob: 1edb844e1c33294228919f3a0a2fd6bc193e2fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class HelloWorldTestCase extends SeleniumTestCase
{
function testButton()
{
$this->open('../../demos/quickstart/index.php?page=Fundamentals.Samples.HelloWorld.Home');
$this->verifyTitle('Hello World');
}
}
?>
|