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

Unified Diff: lib/unittest/string_matchers.dart

Issue 10579008: Added test setup/teardown. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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: lib/unittest/string_matchers.dart
===================================================================
--- lib/unittest/string_matchers.dart (revision 8913)
+++ lib/unittest/string_matchers.dart (working copy)
@@ -178,7 +178,7 @@
// String matchers match against a string. We add this intermediate
// class to give better mismatch error messages than the base Matcher class.
-/*abstract*/ class _StringMatcher extends BaseMatcher {
+/* abstract */ class _StringMatcher extends BaseMatcher {
const _StringMatcher();
Description describeMismatch(item, Description mismatchDescription) {
if (!(item is String)) {

Powered by Google App Engine
This is Rietveld 408576698