public void GetCurentSessionsForLecturer_Success()
        {
            //arrange
            int expected = 2; //todays session and the long running one
            //act
            List <Session> results = sessionRepo.GetCurrentSessions(_lecturer, DateTime.Now.Date);

            //assert
            Assert.AreEqual(expected, results.Count);
        }