diff options
author | xue <> | 2006-03-12 04:43:03 +0000 |
---|---|---|
committer | xue <> | 2006-03-12 04:43:03 +0000 |
commit | cb7b7f1929dce12936eca957caa432e74c6dc7de (patch) | |
tree | 5de1b58f968241299e65e8ac852f88d755f8f25d /tests/FunctionalTests/features.php | |
parent | dcaeab55c94f6f51ab92b7d1a70503a544df73cd (diff) |
reorganized FT tests.
Diffstat (limited to 'tests/FunctionalTests/features.php')
-rw-r--r-- | tests/FunctionalTests/features.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/FunctionalTests/features.php b/tests/FunctionalTests/features.php new file mode 100644 index 00000000..71c8ce3a --- /dev/null +++ b/tests/FunctionalTests/features.php @@ -0,0 +1,39 @@ +<?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__).'/features/tests', $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 |