PopTest\Mvc\RouterTest::testRoute PHP Method

testRoute() public method

public testRoute ( )
    public function testRoute()
    {
        $r = new Router(array('/' => 'Pop\\Mvc\\Controller'));
        $r->route(new Project(new Config(array())));
        $this->assertInstanceOf('Pop\\Mvc\\Controller', $r->controller());
        $this->assertInstanceOf('Pop\\Project\\Project', $r->project());
    }