Exemplo n.º 1
0
 public function testPricingGroup()
 {
     $resource = new Resource();
     $this->assertNull($resource->getPricingGroup());
     $pricingGroup = new PricingGroup();
     $this->assertInstanceOf('iMoneza\\Data\\Resource', $resource->setPricingGroup($pricingGroup));
     $this->assertEquals($pricingGroup, $resource->getPricingGroup());
 }