| 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 unittest.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'; | 12 import '../utils.dart'; |
| 13 import 'expect.dart'; | 13 import 'expect.dart'; |
| 14 | 14 |
| 15 /// Matches a [Future] that completes successfully with a value. | 15 /// Matches a [Future] that completes successfully with a value. |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 Description describe(Description description) { | 73 Description describe(Description description) { |
| 74 if (_matcher == null) { | 74 if (_matcher == null) { |
| 75 description.add('completes successfully'); | 75 description.add('completes successfully'); |
| 76 } else { | 76 } else { |
| 77 description.add('completes to a value that ').addDescriptionOf(_matcher); | 77 description.add('completes to a value that ').addDescriptionOf(_matcher); |
| 78 } | 78 } |
| 79 return description; | 79 return description; |
| 80 } | 80 } |
| 81 } | 81 } |
| OLD | NEW |