Subversion-Projekte lars-tiefland.prado

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

//web testing
class HelloPradoTestCase extends SeleniumTestCase
{
        function testIndexPage()
        {
                $this->open('../index.php');
                $this->assertTextPresent('Welcome to Prado!');
                //add more test assertions...
        }
}

?>