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

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

Issue 45913002: pkg/unittest: Capture stackTrace in all failure cases (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: upload fail the first time 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 | « pkg/unittest/lib/src/numeric_matchers.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/unittest/lib/src/test_case.dart
diff --git a/pkg/unittest/lib/src/test_case.dart b/pkg/unittest/lib/src/test_case.dart
index e1d38750e3bbf15b1227df1e0b825eb0bcfb9342..dc2f59289b152b21d2ba43707df9c8dc5f622a16 100644
--- a/pkg/unittest/lib/src/test_case.dart
+++ b/pkg/unittest/lib/src/test_case.dart
@@ -70,15 +70,7 @@ class TestCase {
bool get isComplete => !enabled || result != null;
- Function _errorHandler(String stage) => (e) {
- var stack;
- // TODO(kevmoo): Ideally, getAttachedStackTrace should handle Error as well?
- // https://code.google.com/p/dart/issues/detail?id=12240
- if(e is Error) {
- stack = e.stackTrace;
- } else {
- stack = getAttachedStackTrace(e);
- }
+ Function _errorHandler(String stage) => (Object e, StackTrace stack) {
if (result == null || result == PASS) {
if (e is TestFailure) {
fail("$e", stack);
« no previous file with comments | « pkg/unittest/lib/src/numeric_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698