public void When_WeTestCycleAndYearMonthAndTime(CycleType cycleType, YearMonth yearMonth, DateTime dateTime)
        {
            SetCurrentCulture();

            cycleType.Should().NotBeNull("The Cycle Type was not found!");
            yearMonth.Should().NotBeNull("The Year Month was not found!");
            dateTime.Should().NotBe(DateTime.MinValue, "The DateTime was not set!");
        }