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

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

Issue 66193010: Way more documentation blanks filled in. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
« no previous file with comments | « no previous file | sdk/lib/core/print.dart » ('j') | sdk/lib/html/dart2js/html_dart2js.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/unittest.dart
diff --git a/pkg/unittest/lib/unittest.dart b/pkg/unittest/lib/unittest.dart
index c13aa9dc5be0bc30557986d3740a3b7d4bc29557..41bfc92386678f3f57c41754a520c4bd13150805 100644
--- a/pkg/unittest/lib/unittest.dart
+++ b/pkg/unittest/lib/unittest.dart
@@ -295,13 +295,16 @@ String _uncaughtErrorMessage = null;
/** Time since we last gave non-sync code a chance to be scheduled. */
var _lastBreath = new DateTime.now().millisecondsSinceEpoch;
-/** Test case result strings. */
+/* Test case result strings. */
// TODO(gram) we should change these constants to use a different string
// (so that writing 'FAIL' in the middle of a test doesn't
// imply that the test fails). We can't do it without also changing
// the testrunner and test.dart though.
+/// Result string for a passing test case.
const PASS = 'pass';
+/// Result string for a failing test case.
const FAIL = 'fail';
+/// Result string for an test case with an error.
const ERROR = 'error';
/**
« no previous file with comments | « no previous file | sdk/lib/core/print.dart » ('j') | sdk/lib/html/dart2js/html_dart2js.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698