Example #1
0
 function testStaticClassMethodMapping()
 {
     $this->app->map('map4', array('Hello', 'sayBye'));
     $result = $this->app->map4();
     $this->assertEquals('goodbye', $result);
 }