public function testPriority()
 {
     $this->routes->add('default', new Route('/blog/', $this->endPoint), 70);
     $this->routes->add('cats', new Route('/cats/', $this->endPoint), 50);
     $this->routes->add('profile', new Route('/cats/', $this->endPoint), 60);
     $routes = $this->routes->getRoutes();
     self::assertEquals(['default', 'profile', 'cats'], array_keys($routes));
 }