Ejemplo n.º 1
0
        public void GetNumsOfRecentProgressRecordsForBrand_returns_expected_dict()
        {
            // Given
            var expectedDict = new Dictionary <int, int> {
                { 308, 1 }
            };

            // When
            var dict = courseDataService.GetNumsOfRecentProgressRecordsForBrand(
                1,
                new DateTime(2022, 1, 5, 11, 30, 30)
                );

            // Then
            dict.Should().BeEquivalentTo(expectedDict);
        }