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

Save() private method

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

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

            Assert.IsTrue(accountUser.Id != ObjectId.Empty);
        }