mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 16:49:34 -05:00
12 lines
345 B
PHP
12 lines
345 B
PHP
<?php
|
|
|
|
use Icinga\Module\Businessprocess\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/Businessprocess/Test/Bootstrap.php';
|
|
Bootstrap::cli($basedir);
|
|
});
|