diff --git a/tests/cases/Exception/TestException.php b/tests/cases/Exception/TestException.php index 6dba703..f77ce37 100644 --- a/tests/cases/Exception/TestException.php +++ b/tests/cases/Exception/TestException.php @@ -73,4 +73,10 @@ class TestException extends \JKingWeb\Arsse\Test\AbstractTest { $this->assertException("uncoded"); throw new LangException("testThisExceptionMessageDoesNotExist"); } + + /** @covers \JKingWeb\Arsse\ExceptionFatal */ + public function testFatalException() { + $this->expectException('JKingWeb\Arsse\ExceptionFatal'); + throw new \JKingWeb\Arsse\ExceptionFatal(""); + } }