Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: pkg/testing/lib/testing.dart

Issue 2623413003: Implement custom status file expectations. (Closed)
Patch Set: Address review comments. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/testing/lib/src/test_dart/status_file_parser.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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;
OLDNEW
« no previous file with comments | « pkg/testing/lib/src/test_dart/status_file_parser.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698