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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/internal/model/DartLibraryImplTest.java

Issue 9600035: Enable new dart:html wrapperless frog bindings and wrapper dartium bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle all code review comments Created 8 years, 10 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: 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");
}

Powered by Google App Engine
This is Rietveld 408576698