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