| 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 import 'package:scheduled_test/scheduled_test.dart'; | 5 import 'package:scheduled_test/scheduled_test.dart'; |
| 6 import 'package:scheduled_test/src/mock_clock.dart' as mock_clock; | 6 import 'package:scheduled_test/src/mock_clock.dart' as mock_clock; |
| 7 | 7 |
| 8 import '../metatest.dart'; | 8 import 'package:metatest/metatest.dart'; |
| 9 import '../utils.dart'; | 9 import '../utils.dart'; |
| 10 | 10 |
| 11 void main(_, message) { | 11 void main() => initTests(_test); |
| 12 |
| 13 void _test(message) { |
| 12 initMetatest(message); | 14 initMetatest(message); |
| 13 | 15 |
| 14 setUpTimeout(); | 16 setUpTimeout(); |
| 15 | 17 |
| 16 expectTestsPass("a single task that takes too long will cause a timeout " | 18 expectTestsPass("a single task that takes too long will cause a timeout " |
| 17 "error", () { | 19 "error", () { |
| 18 mock_clock.mock().run(); | 20 mock_clock.mock().run(); |
| 19 var errors; | 21 var errors; |
| 20 test('test 1', () { | 22 test('test 1', () { |
| 21 currentSchedule.timeout = new Duration(milliseconds: 1); | 23 currentSchedule.timeout = new Duration(milliseconds: 1); |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 currentSchedule.heartbeat(); | 194 currentSchedule.heartbeat(); |
| 193 return sleep(2); | 195 return sleep(2); |
| 194 }); | 196 }); |
| 195 }); | 197 }); |
| 196 }); | 198 }); |
| 197 }); | 199 }); |
| 198 | 200 |
| 199 // TODO(nweiz): test out-of-band post-timeout errors that are detected after | 201 // TODO(nweiz): test out-of-band post-timeout errors that are detected after |
| 200 // the test finishes once we can detect top-level errors (issue 8417). | 202 // the test finishes once we can detect top-level errors (issue 8417). |
| 201 } | 203 } |
| OLD | NEW |