}
private void insertTestUserProfile(String username) throws Exception {
IUserProfile profile = _userProfileManager.getDefaultProfileType();
profile.setId(username);
MonoTextAttribute fullnameAttr = (MonoTextAttribute) profile.getAttribute("fullname");
fullnameAttr.setText("nametest surnametest");
MonoTextAttribute emailAttr = (MonoTextAttribute) profile.getAttribute("email");
emailAttr.setText(JpUserRegTestHelper.EMAIL);
DateAttribute dateAttr = (DateAttribute) profile.getAttribute("birthdate");
dateAttr.setDate(this.getBirthdate(1985, 11, 21));
MonoTextAttribute languageAttr = (MonoTextAttribute) profile.getAttribute("language");
languageAttr.setText("en");
_userRegManager.regAccount(profile);
}