Generates the test route collection.
\Symfony\Component\Routing\RouteCollection Returns the test route collection.
protected function getTestRouteCollection() {
$route_collection = new RouteCollection();
$route_collection
->add('role_test_1', new Route('/role_test_1', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_1',
)));
$route_collection
->add('role_test_2', new Route('/role_test_2', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_2',
)));
$route_collection
->add('role_test_3', new Route('/role_test_3', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_1+role_test_2',
)));
// Ensure that trimming the values works on "OR" conjunctions.
$route_collection
->add('role_test_4', new Route('/role_test_4', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_1 + role_test_2',
)));
$route_collection
->add('role_test_5', new Route('/role_test_5', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_1,role_test_2',
)));
// Ensure that trimming the values works on "AND" conjunctions.
$route_collection
->add('role_test_6', new Route('/role_test_6', array(
'_controller' => '\\Drupal\\router_test\\TestControllers::test1',
), array(
'_role' => 'role_test_1 , role_test_2',
)));
return $route_collection;
}