public function testGetResponse()
 {
     $this->assertEquals($this->response, $this->action->getResponse());
 }
Example #2
0
 /**
  * @magentoAppIsolation enabled
  */
 public function testNoCookiesAction()
 {
     $this->assertEmpty($this->_model->getResponse()->getBody());
     $this->_model->noCookiesAction();
     $this->assertNotEmpty($this->_model->getResponse()->getBody());
 }