Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java |
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java |
index 51cca0d3ee4f63ed264611ebf4983465ebabf7cd..321f69814d114b89dbdda465900f854a07591131 100644 |
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java |
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java |
@@ -277,11 +277,6 @@ public class DartLibraryImplTest extends TestCase { |
assertTrue(children.length > 0); |
} |
- public void test_DartLibraryImpl_getChildren_libHtmlImpl() throws Exception { |
- DartElement[] children = getDartLibHtmlImpl().getChildren(); |
- assertTrue(children.length > 0); |
- } |
- |
public void test_DartLibraryImpl_getChildren_libJson() throws Exception { |
DartElement[] children = getDartLibJson().getChildren(); |
assertContainsCompUnit(children, "json.dart", false, false); |
@@ -364,10 +359,6 @@ public class DartLibraryImplTest extends TestCase { |
assertEquals("dart:html", getDartLibHtml().getElementName()); |
} |
- public void test_DartLibraryImpl_getElementName_libHtmlImpl() throws Exception { |
- assertEquals("dart:htmlimpl", getDartLibHtmlImpl().getElementName()); |
- } |
- |
public void test_DartLibraryImpl_getHandleMemento_lib1() throws Exception { |
assertHandleMemento(getDartLib1()); |
} |
@@ -877,10 +868,6 @@ public class DartLibraryImplTest extends TestCase { |
return getBundledLib("dart:html"); |
} |
- private DartLibraryImpl getDartLibHtmlImpl() throws Exception { |
- return getBundledLib("dart:htmlimpl"); |
- } |
- |
private DartLibraryImpl getDartLibJson() throws Exception { |
return getBundledLib("dart:json"); |
} |