Exemple #1
0
        public void GetAllEvents_GetsCorrectNumber()
        {
            List <Event> tempList = _repo.GetAllEvents();
            int          actual   = tempList.Count;
            int          expected = 6;

            Assert.AreEqual(expected, actual);
        }