travel static method

void travel(
  1. DateTime date
)

Travel to a specific point in time.

Example:

NyTest.travel(DateTime(2025, 1, 1));
expect(NyTime.now().year, 2025);

Implementation

static void travel(DateTime date) {
  NyTime.setTestNow(date);
}