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

Unified Diff: pkg/analysis_server/test/services/dependencies/library_dependencies_test.dart

Issue 874373003: Library dependencies server API updates (to pass package maps). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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/services/dependencies/library_dependencies_test.dart
===================================================================
--- pkg/analysis_server/test/services/dependencies/library_dependencies_test.dart (revision 43154)
+++ pkg/analysis_server/test/services/dependencies/library_dependencies_test.dart (working copy)
@@ -19,7 +19,7 @@
@reflectiveTest
class LibraryDependenciesTest extends AbstractContextTest {
- test_Dependencies() {
+ test_LibraryDependencies() {
addSource('/lib1.dart', 'import "lib2.dart";');
addSource('/lib2.dart', 'import "lib1.dart";');
addSource('/lib3.dart', 'import "lib2.dart";');
@@ -44,8 +44,11 @@
expect(libs, contains('/lib6.dart'));
}
+ test_PackageMaps() {
+ //TODO(pquitslund): add test
+ }
+
void _performAnalysis() {
while (context.performAnalysisTask().hasMoreWork);
}
}
-
« no previous file with comments | « pkg/analysis_server/test/integration/protocol_matchers.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698