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);
    
 }
示例#2
0
        public IAuthenticationRequests GetAuthenticationRequests()
        {
            IAuthenticationRequests myRequests = new AuthenticationRequests();

            return(myRequests);
        }