BetterMembership.IntegrationTests.Helpers.TestUser.TestUser C# (CSharp) Method

TestUser() public method

public TestUser ( string userName, string email, string password, object>.Dictionary profile ) : System.Collections.Generic
userName string
email string
password string
profile object>.Dictionary
return System.Collections.Generic
        public TestUser(string userName, string email, string password, Dictionary<string, object> profile)
        {
            this.profile = profile;
            this.UserName = userName;
            this.Email = email;
            this.Password = password;
        }
TestUser