| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 test.frontend.future_matchers; | 5 library test.frontend.future_matchers; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:matcher/matcher.dart' hide throws, throwsA, expect, fail; | 9 import 'package:matcher/matcher.dart' hide throws, throwsA, expect, fail; |
| 10 | 10 |
| 11 import '../backend/invoker.dart'; | 11 import '../backend/invoker.dart'; |
| 12 import '../utils.dart'; | |
| 13 import 'expect.dart'; | 12 import 'expect.dart'; |
| 14 | 13 |
| 15 /// Matches a [Future] that completes successfully with a value. | 14 /// Matches a [Future] that completes successfully with a value. |
| 16 /// | 15 /// |
| 17 /// Note that this creates an asynchronous expectation. The call to `expect()` | 16 /// Note that this creates an asynchronous expectation. The call to `expect()` |
| 18 /// that includes this will return immediately and execution will continue. | 17 /// that includes this will return immediately and execution will continue. |
| 19 /// Later, when the future completes, the actual expectation will run. | 18 /// Later, when the future completes, the actual expectation will run. |
| 20 /// | 19 /// |
| 21 /// To test that a Future completes with an exception, you can use [throws] and | 20 /// To test that a Future completes with an exception, you can use [throws] and |
| 22 /// [throwsA]. | 21 /// [throwsA]. |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 54 |
| 56 Description describe(Description description) { | 55 Description describe(Description description) { |
| 57 if (_matcher == null) { | 56 if (_matcher == null) { |
| 58 description.add('completes successfully'); | 57 description.add('completes successfully'); |
| 59 } else { | 58 } else { |
| 60 description.add('completes to a value that ').addDescriptionOf(_matcher); | 59 description.add('completes to a value that ').addDescriptionOf(_matcher); |
| 61 } | 60 } |
| 62 return description; | 61 return description; |
| 63 } | 62 } |
| 64 } | 63 } |
| OLD | NEW |