Menu

[r8]: / config.sample.php  Maximize  Restore  History

Download this file

34 lines (24 with data), 952 Bytes

 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
<?php
/**
* PHPUnit Test Runner WUI Sample config file.
*/
// the root directory of the tests
define('ROOT_DIR', '');
// excluded folders patterns
$exclude = array('/PHPUnit/');
// test file suffix (used to determine test files from other files)
define('TEST_SUFFIX', 'Test');
// the directory where the code coverage reports will be generated
define('CODE_COVERAGE_DIR', dirname(__FILE__) . '/CodeCoverageReports');
// location of the PHPUnit command line script
define('PHPUNIT', dirname(dirname(__FILE__)) . '/phpunit');
// location of the PHPUnit framework folder
// define this if PHPUnit is not in the include path
define('PHPUNIT_DIR', dirname(dirname(__FILE__)) . '/PHPUnit');
// used for running single test cases
define('TEST_CASE_PREFIX', 'test_');
// used for variable decorator
define('TAB_WIDTH', '4');
// set this to true if you want to use Ajax requests with progressive test loading status
define('USE_AJAX', true);
/*EOF*/
MongoDB Logo MongoDB