コード例 #1
0
ファイル: ErrorTest.php プロジェクト: cmstone/bugsnag-php
 public function testInvalidSeverity()
 {
     $this->error->setSeverity("bunk");
     $errorArray = $this->error->toArray();
     $this->assertEquals($errorArray['severity'], 'warning');
 }