コード例 #1
0
ファイル: MiddlewareTest.php プロジェクト: djom20/Apricot
 /**
  * @expectedException \RuntimeException
  */
 public function testExceptionPassedThroughMiddlewares()
 {
     Apricot::reset();
     Apricot::add(function () {
         throw new \Exception();
     });
     Apricot::add(function ($e) {
         throw new \RuntimeException();
     });
     Apricot::browse('/');
 }