Ejemplo n.º 1
0
 /**
  * Tests the getRouteName method.
  */
 public function testGetRouteName()
 {
     list($view) = $this->setupViewExecutableAccessPlugin();
     $display = array();
     $display['display_plugin'] = 'page';
     $display['id'] = 'page_1';
     $display['display_options'] = array('path' => 'test_route');
     $this->pathPlugin->initDisplay($view, $display);
     $route_name = $this->pathPlugin->getRouteName();
     // Ensure that the expected routename is returned.
     $this->assertEquals('view.test_id.page_1', $route_name);
 }