App.Web.Tests.Controllers.AccountControllerTest.MockMembershipService.ValidateUser C# (CSharp) 메소드

ValidateUser() 공개 메소드

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