blob: c1b073baece1e804bfccb7eb20f6b944a01c267b [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:integration_test/integration_test.dart';
import 'package:flutter_test/flutter_test.dart';
import '../utils.dart';
void main() {
final IntegrationTestWidgetsFlutterBinding binding = IntegrationTestWidgetsFlutterBinding.ensureInitialized() as IntegrationTestWidgetsFlutterBinding;
testWidgets('Failing test 1', (WidgetTester tester) async {
expect(false, true);
});
testWidgets('Failing test 2', (WidgetTester tester) async {
expect(false, true);
});
tearDownAll(() {
print(
'IntegrationTestWidgetsFlutterBinding test results: ${testResultsToJson(binding.results)}');
});
}