OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 library testing; | 5 library testing; |
6 | 6 |
7 export 'dart:async' show | 7 export 'dart:async' show |
8 Future; | 8 Future; |
9 | 9 |
10 export 'src/discover.dart'; | 10 export 'src/discover.dart'; |
11 | 11 |
12 export 'src/test_description.dart'; | 12 export 'src/test_description.dart'; |
13 | 13 |
14 export 'src/chain.dart' show | 14 export 'src/chain.dart' show |
15 Chain, | 15 Chain, |
16 ChainContext, | 16 ChainContext, |
17 Result, | 17 Result, |
18 Step; | 18 Step; |
19 | 19 |
20 export 'src/stdio_process.dart' show | 20 export 'src/stdio_process.dart' show |
21 StdioProcess; | 21 StdioProcess; |
22 | 22 |
23 export 'src/run.dart' show | 23 export 'src/run.dart' show |
24 run, | 24 run, |
25 runMe; | 25 runMe; |
| 26 |
| 27 export 'src/expectation.dart' show |
| 28 Expectation, |
| 29 ExpectationSet; |
OLD | NEW |