/**
  * @depends testCreateInstitutionPropertyByName
  */
 public function testSaveInstitutionProperty(InstitutionProperty $property)
 {
     $property->setValue("test value");
     $this->service->save($property);
     $this->assertGreaterThan(0, $property->getId());
 }