public void DDDRemove() { testAction.UseEntry <Person>(); int expected = 0; int actual = 0; Person p = new Person(); fpr.Add(p); fpr.Remove(p); actual = fpr.CountPerson(); Assert.AreEqual(expected, actual, "Different actual and expected removing"); }