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