b7de258068
R=danrubel@google.com, pquitslund@google.com Review URL: https://codereview.chromium.org//839833002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@42736 260f80e4-7a28-3924-810f-c04153c831b5
48 lines
1.7 KiB
Dart
48 lines
1.7 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.
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'analysis/test_all.dart' as analysis_all;
|
|
import 'analysis_server_test.dart' as analysis_server_test;
|
|
import 'channel/test_all.dart' as channel_test;
|
|
import 'context_manager_test.dart' as context_manager_test;
|
|
import 'domain_analysis_test.dart' as domain_analysis_test;
|
|
import 'domain_completion_test.dart' as domain_completion_test;
|
|
import 'domain_execution_test.dart' as domain_execution_test;
|
|
import 'domain_server_test.dart' as domain_server_test;
|
|
import 'edit/test_all.dart' as edit_all;
|
|
import 'operation/test_all.dart' as operation_test_all;
|
|
import 'plugin/test_all.dart' as plugin_test_all;
|
|
import 'protocol_server_test.dart' as protocol_server_test;
|
|
import 'protocol_test.dart' as protocol_test;
|
|
import 'search/test_all.dart' as search_all;
|
|
import 'services/test_all.dart' as services_all;
|
|
import 'socket_server_test.dart' as socket_server_test;
|
|
|
|
/**
|
|
* Utility for manually running all tests.
|
|
*/
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('analysis_server', () {
|
|
analysis_all.main();
|
|
analysis_server_test.main();
|
|
channel_test.main();
|
|
context_manager_test.main();
|
|
domain_analysis_test.main();
|
|
domain_completion_test.main();
|
|
domain_execution_test.main();
|
|
domain_server_test.main();
|
|
edit_all.main();
|
|
operation_test_all.main();
|
|
plugin_test_all.main();
|
|
protocol_server_test.main();
|
|
protocol_test.main();
|
|
search_all.main();
|
|
services_all.main();
|
|
socket_server_test.main();
|
|
});
|
|
}
|