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

Find_By_Email() private method

private Find_By_Email ( ) : void
return void
        public void Find_By_Email()
        {
            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);
            Assert.IsNotNull(accountUserFound);
        }