Files
adventofcode2025/test/adventofcode2025_test.dart

8 lines
94 B
Dart
Raw Normal View History

2025-11-29 12:21:39 -06:00
import 'package:test/test.dart';
void main() {
2025-11-30 11:50:51 -06:00
test('42', () {
expect(42, 42);
2025-11-29 12:21:39 -06:00
});
}