summaryrefslogtreecommitdiffstats
path: root/test/php/library/Director/IcingaConfig/StateFilterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/php/library/Director/IcingaConfig/StateFilterTest.php')
-rw-r--r--test/php/library/Director/IcingaConfig/StateFilterTest.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/php/library/Director/IcingaConfig/StateFilterTest.php b/test/php/library/Director/IcingaConfig/StateFilterTest.php
index 82e94d8..2c997bd 100644
--- a/test/php/library/Director/IcingaConfig/StateFilterTest.php
+++ b/test/php/library/Director/IcingaConfig/StateFilterTest.php
@@ -2,6 +2,8 @@
namespace Tests\Icinga\Module\Director\IcingaConfig;
+use Icinga\Exception\InvalidPropertyException;
+use Icinga\Exception\ProgrammingError;
use Icinga\Module\Director\IcingaConfig\StateFilterSet;
use Icinga\Module\Director\Objects\IcingaUser;
use Icinga\Module\Director\Test\BaseTestCase;
@@ -23,19 +25,17 @@ class StateFilterSetTest extends BaseTestCase
);
}
- /**
- * @expectedException \Icinga\Exception\InvalidPropertyException
- */
public function testFailsForInvalidProperties()
{
+ $this->expectException(InvalidPropertyException::class);
+
$set = new StateFilterSet('bla');
}
- /**
- * @expectedException \Icinga\Exception\ProgrammingError
- */
public function testCannotBeStoredForAnUnstoredUser()
{
+ $this->expectException(ProgrammingError::class);
+
StateFilterSet::forIcingaObject(
$this->user1(),
'states'
@@ -152,7 +152,7 @@ class StateFilterSetTest extends BaseTestCase
));
}
- public function tearDown()
+ public function tearDown(): void
{
if ($this->hasDb()) {
$users = array(
@@ -167,5 +167,7 @@ class StateFilterSetTest extends BaseTestCase
}
}
}
+
+ parent::tearDown();
}
}