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

Unified Diff: pkg/unittest/lib/src/test_case.dart

Issue 26359002: Fix an issue where test timeouts would cause no more tests to execute. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | pkg/unittest/lib/unittest.dart » ('j') | pkg/unittest/lib/unittest.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/test_case.dart
===================================================================
--- pkg/unittest/lib/src/test_case.dart (revision 28320)
+++ pkg/unittest/lib/src/test_case.dart (working copy)
@@ -41,6 +41,9 @@
*/
String get result => _result;
+ /** Returns whether this test case passed. */
+ bool get passed => _result == PASS;
+
StackTrace _stackTrace;
/** Stack trace associated with this test, or [null] if it succeeded. */
StackTrace get stackTrace => _stackTrace;
@@ -187,4 +190,6 @@
pass();
}
}
+
+ String toString() => _result != null ? "$description: $result" : description;
}
« no previous file with comments | « no previous file | pkg/unittest/lib/unittest.dart » ('j') | pkg/unittest/lib/unittest.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698