Beispiel #1
0
        public void CalculateRevenueByMonth_ExistsBillInThatMonth_ReturnsRevenueByMonth()
        {
            SetupListForTestRevenueInDifferenceDate();
            DateTime dateTest = new DateTime(2020, 5, 27);

            Int64 result = _sut.CalculateRevenueByMonth(dateTest);

            result.Should().Be(800000);
        }