public function testRootRoute()
 {
     $route = new RouterStaticRule('/');
     $values = $route->match($this->buildRequest('http://localhost/'));
     $this->assertSame(array(), $values);
 }