/**
  * @dataProvider sampleDataProvider
  */
 public function testAddRoute($sample_route, $sample_other_route)
 {
     $array_of_routes = array($sample_route, $sample_other_route);
     // Create our collection
     $routes = new RouteCollection();
     foreach ($array_of_routes as $route) {
         $routes->addRoute($route);
     }
     $this->assertSame($array_of_routes, array_values($routes->all()));
 }