Example #1
0
 /**
  * @todo Implement testGetRoute().
  */
 public function testGetRoute()
 {
     $this->assertEquals('/users/', $this->request->getRoute());
 }
 public function setRoute()
 {
     $route = $this->getMock('IRoute');
     $this->object->setRoute($route);
     $this->assertThat($this->object->getRoute(), $this->identicalTo($route));
 }