BaseTestCases: make 'em abstract to not be empty
This commit is contained in:
parent
b9e05be111
commit
2ce84baa70
|
@ -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 New Issue