26 lines
637 B
PHP
26 lines
637 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
/**
|
|
* @file
|
|
* A nearly verbatim copy of phpunit script that ships with PEAR's PHPUnit.
|
|
*/
|
|
|
|
require_once 'PHP/CodeCoverage/Filter.php';
|
|
PHP_CodeCoverage_Filter::getInstance()->addFileToBlacklist(__FILE__, 'PHPUNIT');
|
|
|
|
if (extension_loaded('xdebug')) {
|
|
// Drush comments out the following line for easier debugging.
|
|
// xdebug_disable();
|
|
}
|
|
|
|
if (strpos('/usr/bin/php', '@php_bin') === 0) {
|
|
set_include_path(dirname(__FILE__) . PATH_SEPARATOR . get_include_path());
|
|
}
|
|
|
|
require_once 'PHPUnit/Autoload.php';
|
|
|
|
define('PHPUnit_MAIN_METHOD', 'PHPUnit_TextUI_Command::main');
|
|
|
|
PHPUnit_TextUI_Command::main();
|