Files
zendegi/packages/z-flutter/packages/z_timeline/test/helpers/test_constants.dart
2026-03-05 18:57:32 +01:00

13 lines
391 B
Dart

/// Reusable UTC date anchors for timeline tests.
///
/// All dates are UTC to avoid timezone flakiness.
/// Domain start: June 1, 2025 00:00 UTC.
final kDomainStart = DateTime.utc(2025, 6, 1);
/// Domain end: July 1, 2025 00:00 UTC (30-day domain).
final kDomainEnd = DateTime.utc(2025, 7, 1);
/// Midpoint anchor: June 15, 2025 12:00 UTC.
final kAnchor = DateTime.utc(2025, 6, 15, 12);