| 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 library substitute_future_test; | 5 library substitute_future_test; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import '../lib/src/substitute_future.dart'; | 9 import 'package:scheduled_test/src/substitute_future.dart'; |
| 10 import '../../../pkg/unittest/lib/unittest.dart'; | 10 import 'package:unittest/unittest.dart'; |
| 11 | 11 |
| 12 void main() { | 12 void main() { |
| 13 group('with no substitution, works like a normal Future for', () { | 13 group('with no substitution, works like a normal Future for', () { |
| 14 var completer; | 14 var completer; |
| 15 var future; | 15 var future; |
| 16 | 16 |
| 17 setUp(() { | 17 setUp(() { |
| 18 completer = new Completer(); | 18 completer = new Completer(); |
| 19 future = new SubstituteFuture(completer.future); | 19 future = new SubstituteFuture(completer.future); |
| 20 }); | 20 }); |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 }); | 145 }); |
| 146 | 146 |
| 147 test('substituting after a future has completed is an error', () { | 147 test('substituting after a future has completed is an error', () { |
| 148 var completer = new Completer(); | 148 var completer = new Completer(); |
| 149 var future = new SubstituteFuture(completer.future); | 149 var future = new SubstituteFuture(completer.future); |
| 150 completer.complete('success'); | 150 completer.complete('success'); |
| 151 expect(() => future.substitute(new Future.immediate(null)), | 151 expect(() => future.substitute(new Future.immediate(null)), |
| 152 throwsStateError); | 152 throwsStateError); |
| 153 }); | 153 }); |
| 154 } | 154 } |
| OLD | NEW |