b5eb7d463e
R=brianwilkerson@google.com Change-Id: I5fd12bdd3dc6bacbec61ad9b722a0016cbde2229 Reviewed-on: https://dart-review.googlesource.com/c/92024 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
16 lines
492 B
Dart
16 lines
492 B
Dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. 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_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import 'error_reporter_test.dart' as error_reporter;
|
|
import 'error_test.dart' as error_test;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
error_reporter.main();
|
|
error_test.main();
|
|
}, name: 'error');
|
|
}
|