| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library unittest.test_environment; | 5 library unittest.test_environment; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'configuration.dart'; | 9 import 'configuration.dart'; |
| 10 import 'group_context.dart'; | 10 import 'group_context.dart'; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 /// The list of test cases to run. | 65 /// The list of test cases to run. |
| 66 final testCases = new List<InternalTestCase>(); | 66 final testCases = new List<InternalTestCase>(); |
| 67 | 67 |
| 68 /// The error message that is printed in the test summary. | 68 /// The error message that is printed in the test summary. |
| 69 String uncaughtErrorMessage; | 69 String uncaughtErrorMessage; |
| 70 | 70 |
| 71 TestEnvironment() { | 71 TestEnvironment() { |
| 72 currentContext = rootContext; | 72 currentContext = rootContext; |
| 73 } | 73 } |
| 74 } | 74 } |
| OLD | NEW |