Index: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/bindings/BindingUtilsTest.java |
diff --git a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/bindings/BindingUtilsTest.java b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/bindings/BindingUtilsTest.java |
index 3580edc6a614cc4bbedcf63ca2ee9b00980aa807..0b46cf99c1b00f878cbb3a439ce1709b6f8899bc 100644 |
--- a/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/bindings/BindingUtilsTest.java |
+++ b/editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/utilities/bindings/BindingUtilsTest.java |
@@ -227,17 +227,17 @@ public class BindingUtilsTest extends TestCase { |
assertNull(BindingUtils.getEnclosingType(ast)); |
} |
- public void test_BindingUtils_getOverriddenMethods() throws Exception { |
- CompilationUnit compilationUnit = getMoneyCompilationUnit("simple_money.dart"); |
- Type type = getType(compilationUnit, "SimpleMoney"); |
- Method method = getMethod(type, "addComplexMoney"); |
- DartUnit ast = DartCompilerUtilities.resolveUnit(compilationUnit); |
- DartClass classNode = getType(ast, type.getElementName()); |
- DartMethodDefinition methodNode = getMethod(classNode, method.getElementName()); |
- MethodElement[] result = BindingUtils.getOverriddenMethods(methodNode.getElement()); |
- assertNotNull(result); |
- assertEquals(1, result.length); |
- } |
+// public void test_BindingUtils_getOverriddenMethods() throws Exception { |
+// CompilationUnit compilationUnit = getMoneyCompilationUnit("simple_money.dart"); |
+// Type type = getType(compilationUnit, "SimpleMoney"); |
+// Method method = getMethod(type, "addComplexMoney"); |
+// DartUnit ast = DartCompilerUtilities.resolveUnit(compilationUnit); |
+// DartClass classNode = getType(ast, type.getElementName()); |
+// DartMethodDefinition methodNode = getMethod(classNode, method.getElementName()); |
+// MethodElement[] result = BindingUtils.getOverriddenMethods(methodNode.getElement()); |
+// assertNotNull(result); |
+// assertEquals(1, result.length); |
+// } |
private CompilationUnit getCompilationUnit(DartLibrary library, String unitName) throws Exception { |
if (library == null) { |