public function testCallFetchesPropertiesDynamically()
 {
     $obj = new stdClass();
     $obj->someKey = 'some value';
     $obj->anotherKey = 'another value';
     $presenter = new Presenter($obj);
     $this->assertEquals('some value', $presenter->someKey());
     $this->assertEquals('another value', $presenter->anotherKey());
 }