summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets.php
diff options
context:
space:
mode:
authorxue <>2006-03-12 16:28:21 +0000
committerxue <>2006-03-12 16:28:21 +0000
commit6ae6538555d45b3e947f5ce0d948d9b88d95364a (patch)
tree55c9622a90debe81de45f8af5cf10e3293862965 /tests/FunctionalTests/tickets.php
parent5f66433898f89865a6682ad9aebfeef14b596dea (diff)
reorganized FT.
Diffstat (limited to 'tests/FunctionalTests/tickets.php')
-rw-r--r--tests/FunctionalTests/tickets.php37
1 files changed, 3 insertions, 34 deletions
diff --git a/tests/FunctionalTests/tickets.php b/tests/FunctionalTests/tickets.php
index a2ea99d2..36511e73 100644
--- a/tests/FunctionalTests/tickets.php
+++ b/tests/FunctionalTests/tickets.php
@@ -1,39 +1,8 @@
<?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();
+require(dirname(__FILE__).'/PradoTester.php');
- //tests for quickstart samples
- $this->get_directories(dirname(__FILE__).'/tickets/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();
+$tester=new PradoTester(dirname(__FILE__).'/tickets/tests');
+$tester->run(new SimpleReporter());
?> \ No newline at end of file