Tests for new exception features
This commit is contained in:
parent
6c2de89f3e
commit
37fd2ad4e9
2 changed files with 11 additions and 1 deletions
|
@ -132,6 +132,6 @@ abstract class AbstractException extends \Exception {
|
|||
}
|
||||
|
||||
public function getParams(): array {
|
||||
return $this->aparams;
|
||||
return $this->params;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,4 +78,14 @@ class TestException extends \JKingWeb\Arsse\Test\AbstractTest {
|
|||
$this->expectException('JKingWeb\Arsse\ExceptionFatal');
|
||||
throw new \JKingWeb\Arsse\ExceptionFatal("");
|
||||
}
|
||||
|
||||
public function testGetExceptionSymbol(): void {
|
||||
$e = new LangException("stringMissing", ['msgID' => "OOK"]);
|
||||
$this->assertSame("stringMissing", $e->getSymbol());
|
||||
}
|
||||
|
||||
public function testGetExceptionParams(): void {
|
||||
$e = new LangException("stringMissing", ['msgID' => "OOK"]);
|
||||
$this->assertSame(['msgID' => "OOK"], $e->getParams());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue