<?php
/**
* PHPUnit Test Runner WUI Sample config file.
*/
// the root directory of the tests
define('ROOT_DIR', realpath(dirname(__FILE__) . '/../LiveChat_server/UnitTests'));
define('PRECEDE_TESTS','LiveChat_server_Framework_');
// 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',realpath( dirname(__FILE__) . '/CodeCoverageReports') );
// location of the PHPUnit command line script
define('PHPUNIT', 'phpunit');
// location of the PHPUnit framework folder
// define this if PHPUnit is not in the include path
//define('PHPUNIT_DIR', realpath( dirname(__FILE__) . '/../LiveChat_server/UnitTests/'));
//echo PHPUNIT_DIR;
// 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*/