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

Side by Side Diff: pkg/front_end/test/src/base/test_all.dart

Issue 2941083002: Remove pkg/front_end's remaining dependencies on pkg/analyzer. (Closed)
Patch Set: Remove analyzer dep from pubspec Created 3 years, 6 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
OLDNEW
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 import 'package:test_reflective_loader/test_reflective_loader.dart'; 5 import 'package:test_reflective_loader/test_reflective_loader.dart';
6 6
7 import 'api_signature_test.dart' as api_signature; 7 import 'api_signature_test.dart' as api_signature;
8 import 'file_repository_test.dart' as file_repository; 8 import 'file_repository_test.dart' as file_repository;
9 import 'flat_buffers_test.dart' as flat_buffers; 9 import 'flat_buffers_test.dart' as flat_buffers;
10 import 'libraries_reader_test.dart' as libraries_reader;
11 import 'processed_options_test.dart' as processed_options; 10 import 'processed_options_test.dart' as processed_options;
12 import 'uri_resolver_test.dart' as uri_resolver; 11 import 'uri_resolver_test.dart' as uri_resolver;
13 12
14 /// Utility for manually running all tests. 13 /// Utility for manually running all tests.
15 main() { 14 main() {
16 defineReflectiveSuite(() { 15 defineReflectiveSuite(() {
17 api_signature.main(); 16 api_signature.main();
18 file_repository.main(); 17 file_repository.main();
19 flat_buffers.main(); 18 flat_buffers.main();
20 libraries_reader.main();
21 processed_options.main(); 19 processed_options.main();
22 uri_resolver.main(); 20 uri_resolver.main();
23 }, name: 'incremental'); 21 }, name: 'incremental');
24 } 22 }
OLDNEW
« no previous file with comments | « pkg/front_end/test/src/base/libraries_reader_test.dart ('k') | pkg/front_end/test/subpackage_relationships_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698