| 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 Future; |
| 8 Future; | |
| 9 | 8 |
| 10 export 'src/discover.dart'; | 9 export 'src/discover.dart'; |
| 11 | 10 |
| 12 export 'src/test_description.dart'; | 11 export 'src/test_description.dart'; |
| 13 | 12 |
| 14 export 'src/chain.dart' show | 13 export 'src/chain.dart' show Chain, ChainContext, Result, Step; |
| 15 Chain, | |
| 16 ChainContext, | |
| 17 Result, | |
| 18 Step; | |
| 19 | 14 |
| 20 export 'src/stdio_process.dart' show | 15 export 'src/stdio_process.dart' show StdioProcess; |
| 21 StdioProcess; | |
| 22 | 16 |
| 23 export 'src/run.dart' show | 17 export 'src/run.dart' show run, runMe; |
| 24 run, | |
| 25 runMe; | |
| 26 | 18 |
| 27 export 'src/expectation.dart' show | 19 export 'src/expectation.dart' show Expectation, ExpectationSet; |
| 28 Expectation, | |
| 29 ExpectationSet; | |
| OLD | NEW |