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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTestCase.java

Issue 8786002: Check that interface constructors and default class constructors are compatible. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Check that types of constructors parameters are identical Created 9 years 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/type/TypeAnalyzerTestCase.java
diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTestCase.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTestCase.java
index 9f9b16e26b63c74ebe083c034b3de3281a6d94f6..d89af675202832e7cc635f70de5294fe3ccdac05 100644
--- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTestCase.java
+++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerTestCase.java
@@ -364,4 +364,11 @@ public class TypeAnalyzerTestCase extends TypeTestCase {
private Type typeOf(String expression) {
return analyzeNode(parseExpression(expression));
}
+
+ /**
+ * This is dummy test method, I have to add it because in other case JUnit (at least in Eclipse)
+ * complains that this test suite has to test methods.
+ */
+ public void testDummy() throws Exception {
+ }
}

Powered by Google App Engine
This is Rietveld 408576698