getResponse() public method

public getResponse ( ) : null | Response
return null | Symfony\Component\HttpFoundation\Response
示例#1
0
 /**
  * Response test
  */
 public function testResponse()
 {
     $event = new TemplateEvent(null, null);
     $this->assertNull($event->getResponse());
     // setResponse test
     $response = new Response();
     $event->setResponse($response);
     $this->assertNotNull($event->getResponse());
     // リダイレクトレスポンスの検証
     $response = new RedirectResponse('http://www.ec-cube.net/');
     $event->setResponse($response);
     $this->assertNotNull($event->getResponse());
 }