| 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; | |
| 6 | |
| 7 import 'dart:async'; | 5 import 'dart:async'; |
| 8 | 6 |
| 9 import 'package:matcher/matcher.dart'; | 7 import 'package:matcher/matcher.dart'; |
| 10 | 8 |
| 11 import '../backend/invoker.dart'; | 9 import '../backend/invoker.dart'; |
| 12 import 'expect.dart'; | 10 import 'expect.dart'; |
| 13 | 11 |
| 14 /// Matches a [Future] that completes successfully with a value. | 12 /// Matches a [Future] that completes successfully with a value. |
| 15 /// | 13 /// |
| 16 /// Note that this creates an asynchronous expectation. The call to `expect()` | 14 /// Note that this creates an asynchronous expectation. The call to `expect()` |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 52 |
| 55 Description describe(Description description) { | 53 Description describe(Description description) { |
| 56 if (_matcher == null) { | 54 if (_matcher == null) { |
| 57 description.add('completes successfully'); | 55 description.add('completes successfully'); |
| 58 } else { | 56 } else { |
| 59 description.add('completes to a value that ').addDescriptionOf(_matcher); | 57 description.add('completes to a value that ').addDescriptionOf(_matcher); |
| 60 } | 58 } |
| 61 return description; | 59 return description; |
| 62 } | 60 } |
| 63 } | 61 } |
| OLD | NEW |