blob: e4b92c8db7ed8e88499895ed44ef96257cefd45c [file] [log] [blame]
// Copyright 2019, the Chromium project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.9
import 'package:flutter_test/flutter_test.dart';
import 'package:integration_test/integration_test.dart';
import 'package:flutter_plugin_android_lifecycle_example/main.dart';
void main() {
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
testWidgets('loads', (WidgetTester tester) async {
await tester.pumpWidget(MyApp());
});
}