13 lines
331 B
PHP
13 lines
331 B
PHP
<?php
|
|
|
|
use Icinga\Module\Director\Test\Bootstrap;
|
|
|
|
call_user_func(function () {
|
|
$basedir = dirname(__DIR__);
|
|
if (! class_exists('PHPUnit_Framework_TestCase')) {
|
|
require_once __DIR__ . '/phpunit-compat.php';
|
|
}
|
|
require_once $basedir . '/library/Director/Test/Bootstrap.php';
|
|
Bootstrap::cli($basedir);
|
|
});
|