blob: b9e4f1e30c4f605d79abfe9fc30260d73379b0a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
//web testing
class HelloPradoTestCase extends SeleniumTestCase
{
function testIndexPage()
{
$this->open('../index.php');
$this->assertTextPresent('Welcome to Prado!');
//add more test assertions...
}
}
?>
|