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

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

Issue 58903013: pkg/unittest: remove overriding stack variable (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, stack) { 73 Function _errorHandler(String stage) => (e, stack) {
74 var stack;
75 if (stack == null && e is Error) { 74 if (stack == null && e is Error) {
76 stack = e.stackTrace; 75 stack = e.stackTrace;
77 } 76 }
78 if (result == null || result == PASS) { 77 if (result == null || result == PASS) {
79 if (e is TestFailure) { 78 if (e is TestFailure) {
80 fail("$e", stack); 79 fail("$e", stack);
81 } else { 80 } else {
82 error("$stage failed: Caught $e", stack); 81 error("$stage failed: Caught $e", stack);
83 } 82 }
84 } 83 }
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 } 181 }
183 182
184 void _markCallbackComplete() { 183 void _markCallbackComplete() {
185 if (--_callbackFunctionsOutstanding == 0 && !isComplete) { 184 if (--_callbackFunctionsOutstanding == 0 && !isComplete) {
186 pass(); 185 pass();
187 } 186 }
188 } 187 }
189 188
190 String toString() => _result != null ? "$description: $result" : description; 189 String toString() => _result != null ? "$description: $result" : description;
191 } 190 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698