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'; |
/** |