mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

These tests depend on line numbers that `dart format` is changing. Pre-format the files in question and adjust the tests so they continue to pass when the entire repo is formatted.
21 lines
790 B
Dart
21 lines
790 B
Dart
// 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/foundation.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Exception handling in test harness - string', (WidgetTester tester) async {
|
|
throw 'Who lives, who dies, who tells your story?';
|
|
});
|
|
testWidgets('Exception handling in test harness - FlutterError', (WidgetTester tester) async {
|
|
throw FlutterError('Who lives, who dies, who tells your story?');
|
|
});
|
|
testWidgets('Exception handling in test harness - uncaught Future error', (
|
|
WidgetTester tester,
|
|
) async {
|
|
Future<void>.error('Who lives, who dies, who tells your story?');
|
|
});
|
|
}
|