Example #1
0
 /**
  * Ensures that the correct reset flag is passed to the Zend url view helper
  * if keepParams() was called.
  */
 public function testParamsAreNotResettedIfKeepParamsWasCalled()
 {
     $this->url->keepParams();
     (string) $this->url;
     $params = $this->getParamsOfLastHelperCall();
     $this->assertFalse($params['reset']);
 }