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

Side by Side Diff: pkg/analyzer_experimental/test/options_test.dart

Issue 23496027: Fix analyzer_experimental hints: remove unused imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library options_test; 5 library options_test;
6 6
7 import 'package:unittest/unittest.dart'; 7 import 'package:unittest/unittest.dart';
8 import 'package:analyzer_experimental/options.dart'; 8 //import 'package:analyzer_experimental/options.dart';
9 9
10 main() { 10 main() {
11 11
12 group('AnalyzerOptions.parse()', () { 12 group('AnalyzerOptions.parse()', () {
13 13
14 test('defaults', () { 14 test('defaults', () {
15 // CommandLineOptions options = CommandLineOptions.parse(['foo.dart']); 15 // CommandLineOptions options = CommandLineOptions.parse(['foo.dart']);
16 // expect(options, isNotNull); 16 // expect(options, isNotNull);
17 // expect(options.shouldBatch, isFalse); 17 // expect(options.shouldBatch, isFalse);
18 // expect(options.machineFormat, isFalse); 18 // expect(options.machineFormat, isFalse);
(...skipping 15 matching lines...) Expand all
34 // CommandLineOptions options = new CommandLineOptions.parse([ 34 // CommandLineOptions options = new CommandLineOptions.parse([
35 // '--ignore_unrecognized_flags', '--bar', '--baz', 'foo.dart']); 35 // '--ignore_unrecognized_flags', '--bar', '--baz', 'foo.dart']);
36 // expect(options, isNotNull); 36 // expect(options, isNotNull);
37 // expect(options.sourceFiles, equals(['foo.dart'])); 37 // expect(options.sourceFiles, equals(['foo.dart']));
38 // }); 38 // });
39 39
40 }); 40 });
41 41
42 } 42 }
43 43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698