public function setUp()
 {
     parent::setUp();
     $this->metadataFactory = $this->prophesize(MetadataFactory::class);
     $this->fieldLoader = $this->prophesize(FieldLoader::class);
     $this->classMetadata = $this->prophesize(ClassMetadata::class);
     $this->propertyMetadata1 = $this->prophesize(PropertyMetadata::class);
     $this->childView = $this->prophesize(ViewInterface::class);
     $this->field = $this->prophesize(Field::class);
     $this->innerField = $this->prophesize(FieldInterface::class);
 }
 public function setUp()
 {
     parent::setUp();
     $this->fieldLoader = $this->prophesize(FieldLoader::class);
     $this->field = $this->prophesize(Field::class);
 }