mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-05-28 04:35:53 -04:00
BaseTestCases: make 'em abstract to not be empty
This commit is contained in:
parent
b9e05be111
commit
2ce84baa70
2 changed files with 2 additions and 2 deletions
|
|
@ -12,7 +12,7 @@ use Icinga\Module\Director\Db\Migrations;
|
|||
use Icinga\Module\Director\Objects\IcingaObject;
|
||||
use PHPUnit_Framework_TestCase;
|
||||
|
||||
class BaseTestCase extends PHPUnit_Framework_TestCase
|
||||
abstract class BaseTestCase extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
private static $app;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ use Icinga\Module\Director\Objects\IcingaObject;
|
|||
/**
|
||||
* Icinga Object test helper class
|
||||
*/
|
||||
class IcingaObjectTestCase extends BaseTestCase
|
||||
abstract class IcingaObjectTestCase extends BaseTestCase
|
||||
{
|
||||
protected $table;
|
||||
protected $testObjectName = '___TEST___';
|
||||
|
|
|
|||
Loading…
Reference in a new issue