ChessClient.Tests.Controllers.AccountControllerTest.MockMembershipService.ValidateUser C# (CSharp) Method

ValidateUser() public method

public ValidateUser ( string userName, string password ) : bool
userName string
password string
return bool
            public bool ValidateUser(string userName, string password)
            {
                return (userName == "someUser" && password == "goodPassword");
            }
AccountControllerTest.MockMembershipService