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

Unified Diff: pkg/analysis_server/test/src/test_all.dart

Issue 1110583002: Add utilities for creating SourceChanges (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missed files Created 5 years, 8 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/analysis_server/test/src/test_all.dart
diff --git a/pkg/analyzer/test/task/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
similarity index 62%
copy from pkg/analyzer/test/task/test_all.dart
copy to pkg/analysis_server/test/src/test_all.dart
index 9ecd16215ffb783037abdb763a392bfa04311251..d5f5729cdc0b544389bd6c7f85a5062c1645c373 100644
--- a/pkg/analyzer/test/task/test_all.dart
+++ b/pkg/analysis_server/test/src/test_all.dart
@@ -2,16 +2,18 @@
// 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.task;
+library test.src;
import 'package:unittest/unittest.dart';
-import 'task_dart_test.dart' as task_dart_test;
+import 'utilities/test_all.dart' as utilities_all;
-/// Utility for manually running all tests.
+/**
+ * Utility for manually running all tests.
+ */
main() {
groupSep = ' | ';
- group('generated tests', () {
- task_dart_test.main();
+ group('analysis_server', () {
+ utilities_all.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698