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