public function testGetResponsePresenter()
 {
     $this->container->expects($this->once())->method('getInstanceOf')->with($this->equalTo('response_service'))->will($this->returnValue($this->getMock('IResponse')));
     $this->container->expects($this->once())->method('getInstanceOfWith')->with($this->equalTo('response_presenter_service'))->will($this->returnValue($this->getMock('IResponsePresenter')));
     $this->assertThat($this->object->getResponsePresenter(), $this->isInstanceOf('IResponsePresenter'));
 }