public function testGetPresenter()
 {
     $this->container->expects($this->once())->method('getInstanceOf')->with($this->equalTo('some_presenter_service'))->will($this->returnValue('presenter_object'));
     $this->assertThat($this->object->getPresenter('some_presenter_service'), $this->equalTo('presenter_object'));
 }