Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

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