summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/index.php
blob: 442c4bbf03cffb9e6212968ed78f44ff981a450b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php

require('config.php');

class BrowserTestConfig extends PradoTestConfig
{
	//functional test groups
	public function unit_test_groups()
	{
		$groups = array();
		$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())
				$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();

?>