summaryrefslogtreecommitdiff
path: root/buildscripts/phing/tasks/PradoTestTask.php
blob: ba1e06be06159ba3d66e00da8e0178535d52dc9a (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();
	}
}

?>