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

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

Issue 2455843002: Several tests for AnalysisDriver and an elements.dart tweak. (Closed)
Patch Set: Created 4 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/src/dart/analysis/test_all.dart
diff --git a/pkg/analyzer/test/src/source/test_all.dart b/pkg/analyzer/test/src/dart/analysis/test_all.dart
similarity index 70%
copy from pkg/analyzer/test/src/source/test_all.dart
copy to pkg/analyzer/test/src/dart/analysis/test_all.dart
index 5b7a464d208f5be5d1b428913eb07dbc3069ae0a..e7488008a5c5bea457d22e50fabdcb0c397dcef7 100644
--- a/pkg/analyzer/test/src/source/test_all.dart
+++ b/pkg/analyzer/test/src/dart/analysis/test_all.dart
@@ -2,15 +2,15 @@
// 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 analyzer.test.src.source.test_all;
+library analyzer.test.src.dart.analysis.test_all;
import 'package:test_reflective_loader/test_reflective_loader.dart';
-import 'source_resource_test.dart' as source_resource_test;
+import 'driver_test.dart' as drivel;
Brian Wilkerson 2016/10/27 05:06:04 "drivel" --> "driver"
scheglov 2016/10/27 16:24:23 Done.
/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
- source_resource_test.main();
- }, name: 'source');
+ drivel.main();
+ }, name: 'analysis');
}

Powered by Google App Engine
This is Rietveld 408576698