14 lines
383 B
Dart
14 lines
383 B
Dart
import 'package:flutter_common/flutter_common.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
test('exports date utility helpers', () {
|
|
final formatted = DateTimeUtils.dateTimeUtilsTool(
|
|
dateTime: DateTime(2026, 4, 15).toIso8601String(),
|
|
dateTimeUtilsType: DateTimeUtilsType.yearMonthDay,
|
|
);
|
|
|
|
expect(formatted, '2026-04-15');
|
|
});
|
|
}
|