- updates calendar to support overriding the current day when rendering - supports current culture when rendering - renames Calendar to CalendarGenerator
14 lines
No EOL
255 B
C#
14 lines
No EOL
255 B
C#
namespace ModuleTests.Calendar.TestData;
|
|
|
|
public class CalendarTestDates : TestDataEnumerator<DateTime>
|
|
{
|
|
public CalendarTestDates()
|
|
{
|
|
Data =
|
|
[
|
|
new DateTime(2026, 06, 01),
|
|
new DateTime(2026, 07, 01),
|
|
new DateTime(2026, 08, 01),
|
|
];
|
|
}
|
|
} |