Dietcube\RouterTest::testDispatchPageNotFound PHP Method

testDispatchPageNotFound() public method

    public function testDispatchPageNotFound()
    {
        $router = static::createRouter();
        $route_info = $router->dispatch('GET', '/unknown');
        $this->assertSame([\FastRoute\Dispatcher::NOT_FOUND], $route_info);
    }