public void AuthenticateUser_TestForValidUserNameAndPassword() { string userName = "******"; string password = "******"; bool expected = true; AuthenticationRequests authenticationRequests = new AuthenticationRequests(); bool acual = authenticationRequests.AuthenticateUser(userName, password); Assert.AreEqual(expected,acual); }
public IAuthenticationRequests GetAuthenticationRequests() { IAuthenticationRequests myRequests = new AuthenticationRequests(); return(myRequests); }