/**
  * @test
  * @author Robert Lemke <*****@*****.**>
  */
 public function isPropertySettableTellsIfAPropertyCanBeSet()
 {
     $this->assertTrue(\F3\FLOW3\Reflection\ObjectAccess::isPropertySettable($this->dummyObject, 'writeOnlyMagicProperty'));
     $this->assertTrue(\F3\FLOW3\Reflection\ObjectAccess::isPropertySettable($this->dummyObject, 'publicProperty'));
     $this->assertTrue(\F3\FLOW3\Reflection\ObjectAccess::isPropertySettable($this->dummyObject, 'property'));
     $this->assertFalse(\F3\FLOW3\Reflection\ObjectAccess::isPropertySettable($this->dummyObject, 'privateProperty'));
 }