/**
  * Test __toString method
  */
 public function testToString()
 {
     $group = new Group();
     $this->assertEquals('New Group', $group->__toString());
 }