예제 #1
0
 /**
  * Run tests to ensure the output is correct for set/getRole
  *
  * @return void
  */
 public function testRole()
 {
     $group = new Group();
     $group->setRole("ROLE_TEST");
     $this->assertEquals("ROLE_TEST", $group->getRole());
 }