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

Unified Diff: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/resolver/LibraryTest.java

Issue 17277004: Split list of referenced libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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
« no previous file with comments | « editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/cache/DartEntryImplTest.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/resolver/LibraryTest.java
===================================================================
--- editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/resolver/LibraryTest.java (revision 24187)
+++ editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/resolver/LibraryTest.java (working copy)
@@ -14,8 +14,6 @@
package com.google.dart.engine.internal.resolver;
import com.google.dart.engine.EngineTestCase;
-import com.google.dart.engine.ast.ExportDirective;
-import com.google.dart.engine.ast.ImportDirective;
import com.google.dart.engine.error.GatheringErrorListener;
import com.google.dart.engine.internal.context.AnalysisContextImpl;
import com.google.dart.engine.internal.element.CompilationUnitElementImpl;
@@ -24,8 +22,6 @@
import com.google.dart.engine.source.FileUriResolver;
import com.google.dart.engine.source.SourceFactory;
-import static com.google.dart.engine.ast.ASTFactory.exportDirective;
-import static com.google.dart.engine.ast.ASTFactory.importDirective;
import static com.google.dart.engine.ast.ASTFactory.libraryIdentifier;
import static com.google.dart.engine.utilities.io.FileUtilities2.createFile;
@@ -64,58 +60,24 @@
library = library("/lib.dart");
}
- public void test_addExport() {
- Library exportLibrary = library("/exported.dart");
- library.addExport(exportDirective("exported.dart"), exportLibrary);
- Library[] exports = library.getExports();
- assertLength(1, exports);
- assertSame(exportLibrary, exports[0]);
- errorListener.assertNoErrors();
- }
-
- public void test_addImport() {
- Library importLibrary = library("/imported.dart");
- library.addImport(importDirective("imported.dart", null), importLibrary);
- Library[] imports = library.getImports();
- assertLength(1, imports);
- assertSame(importLibrary, imports[0]);
- errorListener.assertNoErrors();
- }
-
public void test_getExplicitlyImportsCore() {
assertFalse(library.getExplicitlyImportsCore());
errorListener.assertNoErrors();
}
- public void test_getExport() {
- ExportDirective directive = exportDirective("exported.dart");
- Library exportLibrary = library("/exported.dart");
- library.addExport(directive, exportLibrary);
- assertSame(exportLibrary, library.getExport(directive));
- errorListener.assertNoErrors();
- }
-
public void test_getExports() {
assertLength(0, library.getExports());
errorListener.assertNoErrors();
}
- public void test_getImport() {
- ImportDirective directive = importDirective("imported.dart", null);
- Library importLibrary = library("/imported.dart");
- library.addImport(directive, importLibrary);
- assertSame(importLibrary, library.getImport(directive));
- errorListener.assertNoErrors();
- }
-
public void test_getImports() {
assertLength(0, library.getImports());
errorListener.assertNoErrors();
}
public void test_getImportsAndExports() {
- library.addImport(importDirective("imported.dart", null), library("/imported.dart"));
- library.addExport(exportDirective("exported.dart"), library("/exported.dart"));
+ library.setImportedLibraries(new Library[] {library("/imported.dart")});
+ library.setExportedLibraries(new Library[] {library("/exported.dart")});
assertLength(2, library.getImportsAndExports());
errorListener.assertNoErrors();
}
@@ -138,6 +100,24 @@
errorListener.assertNoErrors();
}
+ public void test_setExportedLibraries() {
+ Library exportLibrary = library("/exported.dart");
+ library.setExportedLibraries(new Library[] {exportLibrary});
+ Library[] exports = library.getExports();
+ assertLength(1, exports);
+ assertSame(exportLibrary, exports[0]);
+ errorListener.assertNoErrors();
+ }
+
+ public void test_setImportedLibraries() {
+ Library importLibrary = library("/imported.dart");
+ library.setImportedLibraries(new Library[] {importLibrary});
+ Library[] imports = library.getImports();
+ assertLength(1, imports);
+ assertSame(importLibrary, imports[0]);
+ errorListener.assertNoErrors();
+ }
+
public void test_setLibraryElement() {
LibraryElementImpl element = new LibraryElementImpl(analysisContext, libraryIdentifier("lib"));
library.setLibraryElement(element);
« no previous file with comments | « editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/internal/cache/DartEntryImplTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698