コード例 #1
0
ファイル: LoggerTest.php プロジェクト: heiglandreas/zf2
 public function testLogThrough__callThrowsOnBadLogPriority()
 {
     $logger = new Logger($this->writer);
     $this->setExpectedException('Zend\\Log\\Exception', 'Bad log priority');
     $logger->nonexistantPriority('');
 }