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

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

Issue 2743423009: Run dartfmt on remaining unformated pkg packages (Closed)
Patch Set: Run dartfmt on remaining unformated pkg packages Created 3 years, 9 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/zone_helper.dart ('k') | pkg/typed_mock/lib/typed_mock.dart » ('j') | 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 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;
OLDNEW
« no previous file with comments | « pkg/testing/lib/src/zone_helper.dart ('k') | pkg/typed_mock/lib/typed_mock.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698