DatabaseOperation.DELETE_ALL.execute(connection, rolesDataSet);
Role testRole = new Role(EsimsConstants._ADMIN_ROLE);
this.roleDAO.save(testRole);
User user = new User(testRole,"admin","test123","FirstName","MiddleName","LastName","M");
this.userDAO.save(user);
UserCredential credential = this.loginDAO.getUserCredentials("admin", "test123");
assertNotNull(credential);
assertEquals("admin", credential.getUserName());
DatabaseOperation.DELETE_ALL.execute(connection, userDataSet);
DatabaseOperation.DELETE_ALL.execute(connection, rolesDataSet);
}