Example #1
0
 public function testPaywallShortDescription()
 {
     $resource = new Resource();
     $this->assertNull($resource->getPaywallShortDescription());
     $this->assertInstanceOf('iMoneza\\Data\\Resource', $resource->setPaywallShortDescription("short desc"));
     $this->assertEquals('short desc', $resource->getPaywallShortDescription());
 }