예제 #1
0
 function its_price_is_mutable(VariantInterface $masterVariant)
 {
     $masterVariant->setPrice(499)->shouldBeCalled();
     $masterVariant->getPrice()->willReturn(499);
     $this->setPrice(499);
     $this->getPrice()->shouldReturn(499);
 }