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

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

Issue 1529923003: Moved the tests for the element model into locations corresponding to the implementation (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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/src/dart/test_all.dart
diff --git a/pkg/analysis_server/test/integration/completion/test_all.dart b/pkg/analyzer/test/src/dart/test_all.dart
similarity index 60%
copy from pkg/analysis_server/test/integration/completion/test_all.dart
copy to pkg/analyzer/test/src/dart/test_all.dart
index aae07f3ecd621c993bf21affa45f131d1e81bca9..ae3e31c22978ceb03ca0cefdc79ab9e610c370fb 100644
--- a/pkg/analysis_server/test/integration/completion/test_all.dart
+++ b/pkg/analyzer/test/src/dart/test_all.dart
@@ -2,19 +2,17 @@
// 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.integration.completion.all;
+library analyzer.test.generated.test_all;
import 'package:unittest/unittest.dart';
import '../../utils.dart';
-import 'get_suggestions_test.dart' as get_suggestions_test;
+import 'element/test_all.dart' as element;
-/**
- * Utility for manually running all integration tests.
- */
+/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('completion', () {
- get_suggestions_test.main();
+ group('generated tests', () {
+ element.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698