PhlytyTest\AppTest::testMapCanReceiveACallable PHP Method

testMapCanReceiveACallable() public method

    public function testMapCanReceiveACallable()
    {
        $map = $this->app->map('/:controller', function ($params, $app) {
        });
        $this->assertInstanceOf('Closure', $map->controller());
    }
AppTest