blob: 81834b859aaaec084e91deb263ee82b6a5606e90 [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:flutter_test/flutter_test.dart';
import 'package:integration_test/common.dart';
import 'utils.dart';
void main() {
test('when one test passes, then another fails', () async {
final List<TestResult> results = await runAndCollectResults(_testMain);
expect(results, <dynamic>[
isSuccess('Passing test'),
isFailure('Failing test')
]);
});
}
void _testMain() {
testWidgets('Passing test', (WidgetTester tester) async {
expect(true, true);
});
testWidgets('Failing test', (WidgetTester tester) async {
expect(false, true);
});
}