AppActs.Client.Repository.SqlServer.MSTest.UserRepositoryIntegration.Find_By_Email_And_Password C# (CSharp) Method

Find_By_Email_And_Password() private method

private Find_By_Email_And_Password ( ) : void
return void
        public void Find_By_Email_And_Password()
        {
            IUserRepository userRepository = new UserRepository(this.Client, this.Database);

            User accountUser = new User("name", Guid.NewGuid().ToString(), "password");
            userRepository.Save(accountUser);

            User accountUserFound = userRepository.Find(accountUser.Email, accountUser.Password);
            Assert.IsNotNull(accountUserFound);
        }