Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Unified Diff: pkg/front_end/test/src/base/test_all.dart

Issue 2875373002: Move flat_buffer and api_signature into front_end. (Closed)
Patch Set: Update summary format generator. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/front_end/test/src/base/flat_buffers_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/src/base/test_all.dart
diff --git a/pkg/front_end/test/src/base/test_all.dart b/pkg/front_end/test/src/base/test_all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a28fa7f045b83b2c0e11dec29cc81118d798bdd7
--- /dev/null
+++ b/pkg/front_end/test/src/base/test_all.dart
@@ -0,0 +1,24 @@
+// 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 'api_signature_test.dart' as api_signature;
+import 'file_repository_test.dart' as file_repository;
+import 'flat_buffers_test.dart' as flat_buffers;
+import 'libraries_reader_test.dart' as libraries_reader;
+import 'processed_options_test.dart' as processed_options;
+import 'uri_resolver_test.dart' as uri_resolver;
+
+/// Utility for manually running all tests.
+main() {
+ defineReflectiveSuite(() {
+ api_signature.main();
+ file_repository.main();
+ flat_buffers.main();
+ libraries_reader.main();
+ processed_options.main();
+ uri_resolver.main();
+ }, name: 'incremental');
+}
« no previous file with comments | « pkg/front_end/test/src/base/flat_buffers_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698