/**
  * @expectedException \RuntimeException
  */
 public function testReadOnlyFieldNotWorking()
 {
     $ro = new ReadOnlyField();
     $ro->setData('test');
 }