diff options
Diffstat (limited to 'tests/FunctionalTests/index.php')
-rw-r--r-- | tests/FunctionalTests/index.php | 54 |
1 files changed, 12 insertions, 42 deletions
diff --git a/tests/FunctionalTests/index.php b/tests/FunctionalTests/index.php index d104f10e..7cf01abd 100644 --- a/tests/FunctionalTests/index.php +++ b/tests/FunctionalTests/index.php @@ -1,42 +1,12 @@ -<?php - -require('config.php'); -header("Content-Type: text/html; charset=UTF-8"); -class BrowserTestConfig extends PradoTestConfig -{ - //functional test groups - public function unit_test_groups() - { - $groups = array(); - - //tests for quickstart samples - $this->get_directories(dirname(__FILE__).'/quickstart_tests', $groups); - - //tests to verify tickets - $this->get_directories($this->tests_directory(),$groups); - - return $groups; - } - - protected function get_directories($base,&$groups) - { - $groups[] = realpath($base); - $dirs = new DirectoryIterator($base); - foreach($dirs as $dir) - if(!$dir->isDot() && $dir->isDir() - && !preg_match("/\.svn/", $dir->getPathName())) - $this->get_directories($dir->getPathName(), $groups); - } -} - - -$root = dirname(__FILE__); -$server = SimpleSeleniumProxyServer::getInstance($root); - -$tester = new PradoSimpleTester(new BrowserTestConfig()); -$browser_tests = $tester->getTests(); -$browser_tests->run(new SimpleReporter()); - -$server->handleRequest(); - -?>
\ No newline at end of file +<html> +<head> +<title> +Prado Functional Test Suites +</title> +</head> +<body> +<a href="quickstart.php">Tests of QuickStart Tutorial Demo</a> +<br/> +<a href="tickets.php">Tests of Trac Tickets</a> +</body> +</html>
\ No newline at end of file |