protected void tearDown() throws Exception {
setFixture(null);
}
public void testCheck() {
UserManagement tested = getFixture();
String iClass = "testClass";
tested.setClass(iClass);
assertEquals(iClass, tested.getClass_());
Boolean iAllowsToLinkUsers = new Boolean(true);
tested.setAllowsToLinkUsers(iAllowsToLinkUsers);
assertEquals(iAllowsToLinkUsers, tested.getAllowsToLinkUsers());
Boolean iInternal = new Boolean(true);
tested.setInternal(iInternal);
assertEquals(iInternal, tested.getInternal());
}