| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |