Example #1
0
 /**
  * @covers Zepto\Router::not_found()
  */
 public function testNotFound()
 {
     $this->router->not_found(function () {
         echo '???';
     });
     $this->router->not_found();
     $this->expectOutputString('???');
 }