Ejemplo n.º 1
0
        public async Task GetActiveEvents_GivenEmptyEventList_ReturnsEmptyList()
        {
            // Act
            var activeEvents = await eventProvider.GetActiveEvents();

            // Assert
            Assert.AreEqual(0, activeEvents.Count());
            await movieRatingProvider.DidNotReceive().GetMovieRatings(Arg.Any <IEnumerable <string> >());
        }