Example #1
0
 public function testRole()
 {
     $role = new Role();
     $this->assertEmpty($role->getId());
     $this->assertEmpty($role->getRole());
     $role->setRole('foo');
     $this->assertStringStartsWith('ROLE_FOO', $role->getRole());
     $this->assertEquals(Role::PREFIX_ROLE, $role->getPrefix());
 }