コード例 #1
0
 public function testEnableSubscriptions()
 {
     $property = new Property();
     $this->assertNull($property->isEnableSubscriptions());
     $this->assertInstanceOf('iMoneza\\Data\\Property', $property->setEnableSubscriptions(true));
     $this->assertTrue($property->isEnableSubscriptions());
 }