Exemple #1
0
 function it_allows_to_remove_association(ProductAssociationInterface $association)
 {
     $association->setOwner($this)->shouldBeCalled();
     $association->setOwner(null)->shouldBeCalled();
     $this->addAssociation($association);
     $this->removeAssociation($association);
     $this->hasAssociation($association)->shouldReturn(false);
 }