b8da9bc651
R=brianwilkerson@google.com BUG= Review URL: https://codereview.chromium.org//725143004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41792 260f80e4-7a28-3924-810f-c04153c831b5
47 lines
1.6 KiB
Dart
47 lines
1.6 KiB
Dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
library test.integration.analysis.all;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'error_test.dart' as error_test;
|
|
import 'get_errors_after_analysis_test.dart' as get_errors_after_analysis_test;
|
|
import 'get_errors_before_analysis_test.dart' as
|
|
get_errors_before_analysis_test;
|
|
import 'get_hover_test.dart' as get_hover_test;
|
|
import 'highlights_test.dart' as highlights_test;
|
|
import 'navigation_test.dart' as navigation_test;
|
|
import 'occurrences_test.dart' as occurrences_test;
|
|
import 'outline_test.dart' as outline_test;
|
|
import 'overrides_test.dart' as overrides_test;
|
|
import 'package_root_test.dart' as package_root_test;
|
|
import 'reanalyze_concurrent_test.dart' as reanalyze_concurrent_test;
|
|
import 'reanalyze_test.dart' as reanalyze_test;
|
|
import 'update_content_list_test.dart' as update_content_list_test;
|
|
import 'update_content_test.dart' as update_content_test;
|
|
|
|
/**
|
|
* Utility for manually running all integration tests.
|
|
*/
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('analysis', () {
|
|
error_test.main();
|
|
get_errors_after_analysis_test.main();
|
|
get_errors_before_analysis_test.main();
|
|
get_hover_test.main();
|
|
highlights_test.main();
|
|
navigation_test.main();
|
|
occurrences_test.main();
|
|
outline_test.main();
|
|
overrides_test.main();
|
|
package_root_test.main();
|
|
reanalyze_concurrent_test.main();
|
|
reanalyze_test.main();
|
|
update_content_test.main();
|
|
update_content_list_test.main();
|
|
});
|
|
}
|