コード例 #1
0
 public function testTitle()
 {
     $property = new Property();
     $this->assertNull($property->getTitle());
     $this->assertInstanceOf('iMoneza\\Data\\Property', $property->setTitle('the title'));
     $this->assertEquals('the title', $property->getTitle());
 }