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

Side by Side Diff: pkg/unittest/lib/src/test_case.dart

Issue 48483002: Remove deprecated parts of dart:async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of unittest; 5 part of unittest;
6 6
7 /** 7 /**
8 * Represents the state for an individual unit test. 8 * Represents the state for an individual unit test.
9 * 9 *
10 * Create by calling [test] or [solo_test]. 10 * Create by calling [test] or [solo_test].
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 63
64 Completer _testComplete; 64 Completer _testComplete;
65 65
66 TestCase._internal(this.id, this.description, this.testFunction) 66 TestCase._internal(this.id, this.description, this.testFunction)
67 : currentGroup = _currentContext.fullName, 67 : currentGroup = _currentContext.fullName,
68 setUp = _currentContext.testSetup, 68 setUp = _currentContext.testSetup,
69 tearDown = _currentContext.testTeardown; 69 tearDown = _currentContext.testTeardown;
70 70
71 bool get isComplete => !enabled || result != null; 71 bool get isComplete => !enabled || result != null;
72 72
73 Function _errorHandler(String stage) => (e) { 73 Function _errorHandler(String stage) => (e, stack) {
74 var stack; 74 var stack;
75 // TODO(kevmoo): Ideally, getAttachedStackTrace should handle Error as well? 75 if (stack == null && e is Error) {
76 // https://code.google.com/p/dart/issues/detail?id=12240
77 if(e is Error) {
78 stack = e.stackTrace; 76 stack = e.stackTrace;
79 } else {
80 stack = getAttachedStackTrace(e);
81 } 77 }
82 if (result == null || result == PASS) { 78 if (result == null || result == PASS) {
83 if (e is TestFailure) { 79 if (e is TestFailure) {
84 fail("$e", stack); 80 fail("$e", stack);
85 } else { 81 } else {
86 error("$stage failed: Caught $e", stack); 82 error("$stage failed: Caught $e", stack);
87 } 83 }
88 } 84 }
89 }; 85 };
90 86
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 } 182 }
187 183
188 void _markCallbackComplete() { 184 void _markCallbackComplete() {
189 if (--_callbackFunctionsOutstanding == 0 && !isComplete) { 185 if (--_callbackFunctionsOutstanding == 0 && !isComplete) {
190 pass(); 186 pass();
191 } 187 }
192 } 188 }
193 189
194 String toString() => _result != null ? "$description: $result" : description; 190 String toString() => _result != null ? "$description: $result" : description;
195 } 191 }
OLDNEW
« no previous file with comments | « pkg/unittest/lib/src/future_matchers.dart ('k') | sdk/lib/_internal/compiler/implementation/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698