Exemplo n.º 1
0
 function testClosureMapping()
 {
     $this->app->map('map1', function () {
         return 'hello';
     });
     $result = $this->app->map1();
     $this->assertEquals('hello', $result);
 }