8 lines
94 B
Dart
8 lines
94 B
Dart
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('42', () {
|
|
expect(42, 42);
|
|
});
|
|
}
|