Example #1
0
    public function testRootRoute()
    {
        $route = new Route\StaticRoute('/');
        $values = $route->match('');

        $this->assertSame(array(), $values);
    }