8 lines
113 B
Dart
8 lines
113 B
Dart
|
|
import 'package:test/test.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
test('placeholder', () {
|
||
|
|
expect(1 + 1, equals(2));
|
||
|
|
});
|
||
|
|
}
|