Esempio n. 1
0
 /**
  * Test an empty Group entity
  */
 public function testEmptyGroup()
 {
     $group = new Group();
     $this->assertNull($group->getId());
     $this->assertNull($group->getName());
     $this->assertNull($group->getDescription());
     $this->assertNull($group->getCreatedBy());
     $this->assertNull($group->getUpdatedBy());
     $this->assertNull($group->getSlug());
 }