| 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 // TODO(nweiz): Add support for calling [schedule] while the schedule is already | 5 // TODO(nweiz): Add support for calling [schedule] while the schedule is already |
| 6 // running. | 6 // running. |
| 7 // TODO(nweiz): Port the non-Pub-specific scheduled test libraries from Pub. | 7 // TODO(nweiz): Port the non-Pub-specific scheduled test libraries from Pub. |
| 8 /// A package for writing readable tests of asynchronous behavior. | 8 /// A package for writing readable tests of asynchronous behavior. |
| 9 /// | 9 /// |
| 10 /// ## Installing ## | 10 /// ## Installing ## |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 /// [pkg]: http://pub.dartlang.org/packages/scheduled_test | 189 /// [pkg]: http://pub.dartlang.org/packages/scheduled_test |
| 190 library scheduled_test; | 190 library scheduled_test; |
| 191 | 191 |
| 192 import 'dart:async'; | 192 import 'dart:async'; |
| 193 | 193 |
| 194 import 'package:unittest/unittest.dart' as unittest; | 194 import 'package:unittest/unittest.dart' as unittest; |
| 195 | 195 |
| 196 import 'src/schedule.dart'; | 196 import 'src/schedule.dart'; |
| 197 import 'src/schedule_error.dart'; | 197 import 'src/schedule_error.dart'; |
| 198 | 198 |
| 199 export 'package:unittest/matcher.dart' hide completes, completion; | 199 export 'package:unittest/unittest.dart' hide |
| 200 export 'package:unittest/unittest.dart' show | 200 test, solo_test, group, setUp, tearDown, unittestConfiguration, |
| 201 Configuration, logMessage, expectThrow; | 201 currentTestCase, completes, completion; |
| 202 | 202 |
| 203 export 'src/schedule.dart'; | 203 export 'src/schedule.dart'; |
| 204 export 'src/schedule_error.dart'; | 204 export 'src/schedule_error.dart'; |
| 205 export 'src/scheduled_future_matchers.dart'; | 205 export 'src/scheduled_future_matchers.dart'; |
| 206 export 'src/task.dart'; | 206 export 'src/task.dart'; |
| 207 | 207 |
| 208 /// The [Schedule] for the current test. This is used to add new tasks and | 208 /// The [Schedule] for the current test. This is used to add new tasks and |
| 209 /// inspect the state of the schedule. | 209 /// inspect the state of the schedule. |
| 210 /// | 210 /// |
| 211 /// This is `null` when there's no test currently running. | 211 /// This is `null` when there's no test currently running. |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 376 |
| 377 return currentSchedule.wrapFuture(future, description); | 377 return currentSchedule.wrapFuture(future, description); |
| 378 } | 378 } |
| 379 | 379 |
| 380 // TODO(nweiz): re-export these once issue 9535 is fixed. | 380 // TODO(nweiz): re-export these once issue 9535 is fixed. |
| 381 unittest.Configuration get unittestConfiguration => | 381 unittest.Configuration get unittestConfiguration => |
| 382 unittest.unittestConfiguration; | 382 unittest.unittestConfiguration; |
| 383 void set unittestConfiguration(unittest.Configuration value) { | 383 void set unittestConfiguration(unittest.Configuration value) { |
| 384 unittest.unittestConfiguration = value; | 384 unittest.unittestConfiguration = value; |
| 385 } | 385 } |
| 386 |
| 387 // TODO(nweiz): re-export these once issue 9535 is fixed. |
| 388 unittest.TestCase get currentTestCase => unittest.currentTestCase; |
| OLD | NEW |