c192336dde
Change-Id: I84b48cc750638ab3bcc138f2a0425442559e6d54 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/304212 Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com> Commit-Queue: Polina Cherkasova <polinach@google.com> Reviewed-by: Ilya Yanok <yanok@google.com> Reviewed-by: Samuel Rawlins <srawlins@google.com>
14 lines
441 B
Dart
14 lines
441 B
Dart
// Copyright (c) 2023, 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 'usage_tracking/test_all.dart' as usage_tracking;
|
|
|
|
void main() {
|
|
defineReflectiveSuite(() {
|
|
usage_tracking.main();
|
|
}, name: 'utilities');
|
|
}
|