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