ad498f34dc
R=brianwilkerson@google.com Change-Id: I8221b0c2f97ada211b101d31420e60062f30887d Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/194115 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
14 lines
450 B
Dart
14 lines
450 B
Dart
// Copyright (c) 2020, 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 'metrics_util_test.dart' as metrics_util_test;
|
|
|
|
void main() {
|
|
defineReflectiveSuite(() {
|
|
metrics_util_test.main();
|
|
}, name: 'completion_metrics');
|
|
}
|