/** * @return string */ public function getAction() { if (trim($this->action) === '') { $action = $this->buildAction($this->routes->getAction('default')); } else { $action = $this->buildAction($this->action); } return $action; }
public function testGetAction() { $this->assertSame('testAction', $this->routes->getAction('test')); }