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