public function testForward()
 {
     $this->driver->expects($this->once())->method('forward');
     $this->session->forward();
 }
Example #2
0
 /**
  * Moves forward in history
  */
 public function moveForward()
 {
     $this->session->forward();
     $this->debug($this->session->getCurrentUrl());
 }