Ejemplo n.º 1
0
 public function testAppNameNotSetWhenMissingInConfig()
 {
     $this->moduleOptions->setApplicationName("");
     $this->client->expects($this->never())->method('setAppName');
     $routeMatch = new \Zend\Mvc\Router\RouteMatch(array());
     $this->event->setRouteMatch($routeMatch);
     $this->listener->onRequest($this->event);
 }
Ejemplo n.º 2
0
 public function testDisableAutorum()
 {
     $this->client->disableAutorum();
 }