Ian Hickson | 449f4a6 | 2019-11-27 15:04:02 -0800 | [diff] [blame] | 1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
Yegor | d634307 | 2016-11-09 15:28:30 -0800 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Jonah Williams | 7629758 | 2020-10-28 18:15:23 -0700 | [diff] [blame] | 5 | import '../test/common.dart'; |
| 6 | |
Yegor | d634307 | 2016-11-09 15:28:30 -0800 | [diff] [blame] | 7 | void main() { |
| 8 | // Intentionally fail the test. We want to see driver return a non-zero exit |
| 9 | // code when this happens. |
Jonah Williams | 7629758 | 2020-10-28 18:15:23 -0700 | [diff] [blame] | 10 | test('it fails a test', () { |
| 11 | expect(true, isFalse); |
| 12 | }); |
Yegor | d634307 | 2016-11-09 15:28:30 -0800 | [diff] [blame] | 13 | } |