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

Unified Diff: compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java

Issue 16564002: Don't use 'interface' in test files. (Closed) Base URL: https://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
Index: compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java b/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java
index 5e171c63f46026f3723b4e4f6a94b8fcd5f561c4..d924a0437227f5daea61e2753cffb18af04b3f8c 100644
--- a/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java
+++ b/compiler/javatests/com/google/dart/compiler/resolver/NegativeResolverTest.java
@@ -256,10 +256,6 @@ public class NegativeResolverTest extends CompilerTestCase {
"}"));
}
- public void tesClassImplementsUnknownInterfaceNegativeTest() {
- checkNumErrors("ClassImplementsUnknownInterfaceNegativeTest.dart", 1);
- }
-
public void testConstSuperNegativeTest1() {
checkNumErrors("ConstSuperNegativeTest1.dart", 0);
}
@@ -355,7 +351,7 @@ public class NegativeResolverTest extends CompilerTestCase {
"set bar(x) {}",
"get bar {}"));
}
-
+
public void test_nameShadow_topLevel_setter_variable() {
checkSourceErrors(
makeCode(
@@ -1034,7 +1030,7 @@ public class NegativeResolverTest extends CompilerTestCase {
Type boundType = typeParameter.getBound().getType();
assertEquals("A", boundType.getElement().getName());
}
-
+
/**
* <p>
* http://code.google.com/p/dart/issues/detail?id=3986
@@ -1163,7 +1159,7 @@ public class NegativeResolverTest extends CompilerTestCase {
""),
errEx(ResolverErrorCode.ILLEGAL_FIELD_ACCESS_FROM_STATIC, 4, 22, 1));
}
-
+
/**
* <p>
* http://code.google.com/p/dart/issues/detail?id=6489

Powered by Google App Engine
This is Rietveld 408576698