public function testCantAddOwnersToNonExisting()
 {
     $this->address->delete();
     $this->address->addOwner($this->owner1);
     $this->assertEquals(0, count($this->address->listOwners()));
 }