コード例 #1
0
ファイル: ContactTest.php プロジェクト: antrampa/crm
 public function testGetGroupLabelsAsString()
 {
     $entity = new Contact();
     $this->assertEquals('', $entity->getGroupLabelsAsString());
     $entity->addGroup(new Group('Group One'));
     $this->assertEquals('Group One', $entity->getGroupLabelsAsString());
     $entity->addGroup(new Group('Group Two'));
     $this->assertEquals('Group One, Group Two', $entity->getGroupLabelsAsString());
 }