Ejemplo n.º 1
0
        public void ProcessSignIn_ShouldSignInValidUser()
        {
            // Test user
            string username = "******";
            string password = "******";

            signInService.AddUser(signInService.CreateUser(username, password));

            bool outcome = signInService.ProcessSignIn(username, password);

            Assert.True(outcome);
        }