public void testAdd() { //Arrange int count = repo.All().Count(); // Act this.repo.Add(entity); this.repo.SaveChanges(); // Assert Assert.True(repo.Count() == count + 1); this.repo.HardDelete(entity); this.repo.SaveChanges(); }