public void EventRepo_AddEventToList_ShouldBeCorrect() { Event outing = new Event(); Event outingTwo = new Event(); EventRepo repo = new EventRepo(); repo.AddEventToList(outing); repo.AddEventToList(outingTwo); int actual = repo.GetEventList().Count; int expected = 2; Assert.AreEqual(expected, actual); }