Esempio n. 1
0
 public void GetUserInformationByEmail()
 {
     AuthenticationDomainService service = new AuthenticationDomainService();
     UserProfile user = service.GetUserInformationByEmail("*****@*****.**");
     Assert.AreNotEqual(user, null);
 }
Esempio n. 2
0
 public void GetUserInformationActiveDirectory()
 {
     AuthenticationDomainService service = new AuthenticationDomainService();
     UserProfile user = service.GetUserInformationActiveDirectory("ecuiorbatallas", "AMERICA");
     Assert.AreNotEqual(user, null);
 }