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

Unified Diff: dart/editor/util/plugins/com.google.dart.java2dart/resources/java_junit.dart

Issue 56933002: Version 0.8.10.1 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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: dart/editor/util/plugins/com.google.dart.java2dart/resources/java_junit.dart
===================================================================
--- dart/editor/util/plugins/com.google.dart.java2dart/resources/java_junit.dart (revision 29785)
+++ dart/editor/util/plugins/com.google.dart.java2dart/resources/java_junit.dart (working copy)
@@ -43,6 +43,9 @@
static void assertSameMsg(String msg, expected, actual) {
expect(actual, sameMsg(msg, expected));
}
+ static void assertNotSame(expected, actual) {
+ expect(actual, notSame(expected));
+ }
}
runJUnitTest(testInstance, Function testFunction) {

Powered by Google App Engine
This is Rietveld 408576698