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

Side by Side Diff: pkg/analyzer_cli/test/package_prefix_test.dart

Issue 2395183002: Switch analyzer_cli to 'package:test'. (Closed)
Patch Set: Created 4 years, 2 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/analyzer_cli/test/options_test.dart ('k') | pkg/analyzer_cli/test/perf_report_test.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 import 'dart:io' show exitCode; 1 import 'dart:io' show exitCode;
2 2
3 import 'package:analyzer_cli/src/driver.dart' show Driver, outSink, errorSink; 3 import 'package:analyzer_cli/src/driver.dart' show Driver, outSink, errorSink;
4 import 'package:analyzer_cli/src/options.dart' show ExitHandler, exitHandler; 4 import 'package:analyzer_cli/src/options.dart' show ExitHandler, exitHandler;
5 import 'package:path/path.dart'; 5 import 'package:path/path.dart';
6 import 'package:unittest/unittest.dart'; 6 import 'package:test/test.dart';
7 7
8 import 'utils.dart' show testDirectory; 8 import 'utils.dart' show testDirectory;
9 9
10 main() { 10 main() {
11 group('--x-package-warnings-prefix', () { 11 group('--x-package-warnings-prefix', () {
12 _Runner runner; 12 _Runner runner;
13 13
14 setUp(() { 14 setUp(() {
15 runner = new _Runner.setUp(); 15 runner = new _Runner.setUp();
16 }); 16 });
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 } 65 }
66 } 66 }
67 67
68 void tearDown() { 68 void tearDown() {
69 outSink = _savedOutSink; 69 outSink = _savedOutSink;
70 errorSink = _savedErrorSink; 70 errorSink = _savedErrorSink;
71 exitCode = _savedExitCode; 71 exitCode = _savedExitCode;
72 exitHandler = _savedExitHandler; 72 exitHandler = _savedExitHandler;
73 } 73 }
74 } 74 }
OLDNEW
« no previous file with comments | « pkg/analyzer_cli/test/options_test.dart ('k') | pkg/analyzer_cli/test/perf_report_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698