From fc60e6690b6413645cb1fb940788494aa2025f1a Mon Sep 17 00:00:00 2001 From: Zachary Anderson Date: Mon, 29 Nov 2021 12:34:25 -0800 Subject: [PATCH] Add failing test to close the tree for #94356 (#94365) --- .../test/general.shard/failing_test.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 packages/flutter_tools/test/general.shard/failing_test.dart diff --git a/packages/flutter_tools/test/general.shard/failing_test.dart b/packages/flutter_tools/test/general.shard/failing_test.dart new file mode 100644 index 00000000000..0773d89ec65 --- /dev/null +++ b/packages/flutter_tools/test/general.shard/failing_test.dart @@ -0,0 +1,14 @@ +// 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 '../src/common.dart'; + +// This is a test that we can use to close the tree until +// https://github.com/flutter/flutter/issues/74529 is addressed. + +void main() { + test('Fail unconditionally', () { // ignore: void_checks + fail('Failing to close the tree for https://github.com/flutter/flutter/issues/94356'); + }); // Skip this test to re-open the tree. +}