blob: c5a7f6ea00e64f834240af8172d0494bbc7d257d [file] [log] [blame]
Ian Hickson449f4a62019-11-27 15:04:02 -08001// Copyright 2014 The Flutter Authors. All rights reserved.
Yegord6343072016-11-09 15:28:30 -08002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Jonah Williams76297582020-10-28 18:15:23 -07005import '../test/common.dart';
6
Yegord6343072016-11-09 15:28:30 -08007void main() {
8 // Intentionally fail the test. We want to see driver return a non-zero exit
9 // code when this happens.
Jonah Williams76297582020-10-28 18:15:23 -070010 test('it fails a test', () {
11 expect(true, isFalse);
12 });
Yegord6343072016-11-09 15:28:30 -080013}