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

Unified Diff: pkg/analyzer/test/generated/test_all.dart

Issue 632553002: Make it easier to run engine tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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
Index: pkg/analyzer/test/generated/test_all.dart
diff --git a/pkg/analyzer/test/generated/test_all.dart b/pkg/analyzer/test/generated/test_all.dart
new file mode 100644
index 0000000000000000000000000000000000000000..4ccbce14eaa8fba762dc6fb96f8192efceaa4ab8
--- /dev/null
+++ b/pkg/analyzer/test/generated/test_all.dart
@@ -0,0 +1,33 @@
+// 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.
+
+library test.generated;
+
+import 'package:unittest/unittest.dart';
+
+import 'all_the_rest.dart' as all_the_rest;
+import 'ast_test.dart' as ast_test;
+import 'element_test.dart' as element_test;
+import 'engine_test.dart' as engine_test;
+import 'java_core_test.dart' as java_core_test;
+import 'java_io_test.dart' as java_io_test;
+import 'parser_test.dart' as parser_test;
+import 'resolver_test.dart' as resolver_test;
+import 'scanner_test.dart' as scanner_test;
+
+/// Utility for manually running all tests.
+main() {
+ groupSep = ' | ';
+ group('file_system', () {
scheglov 2014/10/05 16:42:38 Copy-paste detected! :-)
Brian Wilkerson 2014/10/05 22:21:37 Done
+ all_the_rest.main();
+ ast_test.main();
+ element_test.main();
+ engine_test.main();
+ java_core_test.main();
+ java_io_test.main();
+ parser_test.main();
+ resolver_test.main();
+ scanner_test.main();
+ });
+}

Powered by Google App Engine
This is Rietveld 408576698