/**
  * @test
  *
  * @expectedException \DomainException
  * @expectedExceptionMessage Branch does not have "invalid_property" property.
  */
 public function thatDoesNotUpdateInvalidProperty()
 {
     $branch = new Branch('DUMM', 'DUMMY_NAME', 'DUMMY_DESC');
     $branch->updateProperty('invalid_property', 'value');
 }