9 lines
167 B
Dart
9 lines
167 B
Dart
|
|
import 'package:adventofcode2025/adventofcode2025.dart';
|
||
|
|
import 'package:test/test.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
test('calculate', () {
|
||
|
|
expect(calculate(), 42);
|
||
|
|
});
|
||
|
|
}
|