Пример #1
0
        public SuggestUsernamesTest()
        {
            this.authenticationService = new Mock <IAuthenticationService>();
            this.potentialNewUser      = new PotentialNewUserModel("AnyFirstname", "AnyLastname");
            this.suggestions           = new List <string>();

            this.testee = new SuggestUsernames(this.authenticationService.Object, this.potentialNewUser, this.suggestions);
        }
Пример #2
0
        public SuggestUsernamesTest()
        {
            this.authenticationService = new Mock<IAuthenticationService>();
            this.potentialNewUser = new PotentialNewUserModel("AnyFirstname", "AnyLastname");
            this.suggestions = new List<string>();

            this.testee = new SuggestUsernames(this.authenticationService.Object, this.potentialNewUser, this.suggestions);
        }