blob: 6d612e462ad776c70107427b091a5eef382ebc30 (
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
/**
* A few common settings for all unit tests.
*
* This file should be included in all unit tests with absolute path to be able to run it
* from the command line with "phpunit" like this:
*
* require_once dirname(__FILE__).'/path/../to/../phpunit.php';
*
* Also remember do define the @package attribute for your test class to make it appear under
* the right package in unit test and code coverage reports.
*/
define('PRADO_FRAMEWORK_DIR', dirname(__FILE__).'/../../framework');
set_include_path(PRADO_FRAMEWORK_DIR.PATH_SEPARATOR.get_include_path());
require_once dirname(__FILE__).'/Prado.php';
require_once PRADO_FRAMEWORK_DIR.'/prado.php';
//grab the version of phpunit, OPP: phpunit provided version call
$version = `{$_SERVER['argv'][0]} --version`;
preg_match('/(\d\d?)\.(\d\d?)(\.(\d\d?))?/', $version, $matches);
if($matches[1] <= 3){
if($matches[2] <= 4){
require_once 'PHPUnit/Framework.php';
if($matches[2] <= 3){
require_once 'PHPUnit/Framework/TestCase.php';
require_once 'PHPUnit/Framework/IncompleteTestError.php';
require_once 'PHPUnit/Framework/TestSuite.php';
}
}
}
require_once 'PHPUnit/TextUI/TestRunner.php';
require_once 'PHPUnit/Util/Filter.php';
?>
|