8 lines
117 B
Dart
8 lines
117 B
Dart
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
||
|
void main() {
|
||
|
test('blank', () {
|
||
|
expect(true, true);
|
||
|
});
|
||
|
}
|