public void testSendNotificationStatusAccountEmail() throws Exception{
final List<Email> emailList = getCatEmailDao().findEmailsByListId(
this.emailList.getIdList());
for (Email emails : emailList) {
assertNotNull(emails.getEmail());
final SignUpBean signUpBean = new SignUpBean();
signUpBean.setCaptcha("mycaptcha");
signUpBean.setEmail(this.emails.toString());
signUpBean.setFullName("mifullname");
signUpBean.setPassword("mipassword");
signUpBean.setUsername("myusername");
mailService.sendNotificationStatusAccount(signUpBean, "Mi mensaje");
}
}