blob: cd2c87f840de79265432be7f06859ad8cc47208b (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | <?php
require_once 'phing/Task.php';
require_once 'phing/tasks/ext/phpunit2/PHPUnit2Task.php';
/**
 * Task to run PRADO unit tests
 */	
class PradoTestTask extends PHPUnit2Task
{
	function init()
	{
		$phpunit2_path = realpath(dirname(__FILE__).'/../..');
		set_include_path(get_include_path().PATH_SEPARATOR.$phpunit2_path);		
		parent::init();
	}
}
?>
 |