5d4cd6d589
Change-Id: Ifa9ca24487f93f3eb0ec95eeb64f5bbb5aa32714 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/113216 Commit-Queue: Paul Berry <paulberry@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
15 lines
453 B
Dart
15 lines
453 B
Dart
// Copyright (c) 2014, 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 'element_test.dart' as element;
|
|
|
|
/// Utility for manually running all tests.
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
element.main();
|
|
}, name: 'element');
|
|
}
|