OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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.backend.live_test; | 5 library test.backend.live_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'state.dart'; | 9 import 'state.dart'; |
10 import 'suite.dart'; | 10 import 'suite.dart'; |
11 import 'test.dart'; | 11 import 'test.dart'; |
12 | 12 |
13 /// A runnable instance of a test. | 13 /// A runnable instance of a test. |
14 /// | 14 /// |
15 /// This is distinct from [Test] in order to keep [Test]. Running a test | 15 /// This is distinct from [Test] in order to keep [Test]. Running a test |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 /// Once [close] is called, [onComplete] will complete if it hasn't already | 111 /// Once [close] is called, [onComplete] will complete if it hasn't already |
112 /// and [onStateChange] and [onError] will close immediately. This means that, | 112 /// and [onStateChange] and [onError] will close immediately. This means that, |
113 /// if the test was running at the time [close] is called, it will never emit | 113 /// if the test was running at the time [close] is called, it will never emit |
114 /// a [Status.complete] state-change event. | 114 /// a [Status.complete] state-change event. |
115 /// | 115 /// |
116 /// This doesn't automatically happen after the test completes because there | 116 /// This doesn't automatically happen after the test completes because there |
117 /// may be more asynchronous work going on in the background that could | 117 /// may be more asynchronous work going on in the background that could |
118 /// produce new errors. | 118 /// produce new errors. |
119 Future close(); | 119 Future close(); |
120 } | 120 } |
OLD | NEW |