summaryrefslogtreecommitdiffstats
path: root/test/php/library/Director/Objects/IcingaServiceSetTest.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/php/library/Director/Objects/IcingaServiceSetTest.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/php/library/Director/Objects/IcingaServiceSetTest.php b/test/php/library/Director/Objects/IcingaServiceSetTest.php
index ad7c135..a9a9fa1 100644
--- a/test/php/library/Director/Objects/IcingaServiceSetTest.php
+++ b/test/php/library/Director/Objects/IcingaServiceSetTest.php
@@ -10,8 +10,9 @@ class IcingaServiceSetTest extends IcingaObjectTestCase
protected $table = 'icinga_service_set';
protected $testObjectName = '___TEST___set';
- public function setUp()
+ public function setUp(): void
{
+ parent::setUp();
$this->assertNull($this->subject, 'subject must have been taken down before!');
if ($this->hasDb()) {
@@ -106,22 +107,20 @@ class IcingaServiceSetTest extends IcingaObjectTestCase
$this->checkForDanglingServices();
}
- /**
- * @expectedException \RuntimeException
- */
public function testCreatingSetWithoutType()
{
+ $this->expectException(\RuntimeException::class);
+
$set = IcingaServiceSet::create(array(
'object_name' => '___TEST__set_BAD',
));
$set->store($this->getDb());
}
- /**
- * @expectedException \InvalidArgumentException
- */
public function testCreatingServiceSetWithoutHost()
{
+ $this->expectException(\InvalidArgumentException::class);
+
$set = IcingaServiceSet::create(array(
'object_name' => '___TEST__set_BAD2',
'object_type' => 'object',