public function testRemoveWithPriority()
 {
     $this->routes->add('default', new Route('/blog/', $this->endPoint), 70);
     $this->routes->add('cats', new Route('/cats/', $this->endPoint), 50);
     $this->routes->removeItem('default', 70);
     $routes = $this->routes->getRoutes();
     self::assertCount(1, $routes);
 }