mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-22 15:50:15 -05:00
48 lines
928 B
PHP
48 lines
928 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Icinga\Module\Businessprocess\Test;
|
||
|
|
|
||
|
|
use Icinga\Application\ApplicationBootstrap;
|
||
|
|
use Icinga\Application\Icinga;
|
||
|
|
use PHPUnit_Framework_TestCase;
|
||
|
|
|
||
|
|
abstract class BaseTestCase extends PHPUnit_Framework_TestCase
|
||
|
|
{
|
||
|
|
/** @var ApplicationBootstrap */
|
||
|
|
private static $app;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @inheritdoc
|
||
|
|
*/
|
||
|
|
public function setUp()
|
||
|
|
{
|
||
|
|
$this->app();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param null $subDir
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
protected function getTestsBaseDir($subDir = null)
|
||
|
|
{
|
||
|
|
$dir = dirname(dirname(dirname(__DIR__))) . '/test';
|
||
|
|
if ($subDir === null) {
|
||
|
|
return $dir;
|
||
|
|
} else {
|
||
|
|
return $dir . '/' . ltrim($subDir, '/');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return ApplicationBootstrap
|
||
|
|
*/
|
||
|
|
protected function app()
|
||
|
|
{
|
||
|
|
if (self::$app === null) {
|
||
|
|
self::$app = Icinga::app();
|
||
|
|
}
|
||
|
|
|
||
|
|
return self::$app;
|
||
|
|
}
|
||
|
|
}
|