2025-10-20 10:34:17 +08:00
|
|
|
import 'package:flutter_common/flutter_common.dart';
|
2026-04-16 10:35:06 +08:00
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
2025-10-20 10:34:17 +08:00
|
|
|
|
|
|
|
|
void main() {
|
2026-04-16 10:35:06 +08:00
|
|
|
test('exports date utility helpers', () {
|
|
|
|
|
final formatted = DateTimeUtils.dateTimeUtilsTool(
|
|
|
|
|
dateTime: DateTime(2026, 4, 15).toIso8601String(),
|
|
|
|
|
dateTimeUtilsType: DateTimeUtilsType.yearMonthDay,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
expect(formatted, '2026-04-15');
|
2025-10-20 10:34:17 +08:00
|
|
|
});
|
|
|
|
|
}
|