first import
This commit is contained in:
25
sites/all/modules/drush/tests/runner.php
Normal file
25
sites/all/modules/drush/tests/runner.php
Normal file
@@ -0,0 +1,25 @@
|
||||
#!/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();
|
Reference in New Issue
Block a user