BaseTestCases: make 'em abstract to not be empty

This commit is contained in:
Thomas Gelf 2016-11-30 09:23:36 +01:00
parent b9e05be111
commit 2ce84baa70
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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___';