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

We now produce a more reasonable error message when we're missing the flutter_test dependency in a test. Also, remove the flutter_tools stack traces when the engine dies. Fixes #6187
12 lines
269 B
Dart
12 lines
269 B
Dart
// Copyright 2017 The Chromium 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:test/test.dart';
|
|
|
|
void main() {
|
|
test('Trival test', () {
|
|
expect(42, 42);
|
|
});
|
|
}
|