OrnoTest\Route\RouteCollectionTest::testCollectionReturnsDispatcher PHP Method

testCollectionReturnsDispatcher() public method

Asserts that getDispatcher method returns correct instance
    public function testCollectionReturnsDispatcher()
    {
        $router = new RouteCollection();
        $this->assertInstanceOf('Orno\\Route\\Dispatcher', $router->getDispatcher());
        $this->assertInstanceOf('FastRoute\\Dispatcher\\GroupCountBased', $router->getDispatcher());
    }