Example #1
0
 public function testResourcePricingTiers()
 {
     $resource = new Resource();
     $this->assertNull($resource->getResourcePricingTiers());
     $this->assertInstanceOf('iMoneza\\Data\\Resource', $resource->setResourcePricingTiers(['something-here']));
     $this->assertEquals(['something-here'], $resource->getResourcePricingTiers());
 }