aac571f7a0
R=scheglov@google.com Review URL: https://codereview.chromium.org//862133006 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43168 260f80e4-7a28-3924-810f-c04153c831b5
35 lines
1.3 KiB
Dart
35 lines
1.3 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.analysis;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'get_errors_test.dart' as get_errors_test;
|
|
import 'get_hover_test.dart' as get_hover_test;
|
|
import 'notification_errors_test.dart' as notification_errors_test;
|
|
import 'notification_highlights_test.dart' as notification_highlights_test;
|
|
import 'notification_navigation_test.dart' as notification_navigation_test;
|
|
import 'notification_occurrences_test.dart' as notification_occurrences_test;
|
|
import 'notification_outline_test.dart' as notification_outline_test;
|
|
import 'notification_overrides_test.dart' as notification_overrides_test;
|
|
import 'update_content_test.dart' as update_content_test;
|
|
|
|
/**
|
|
* Utility for manually running all tests.
|
|
*/
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('search', () {
|
|
get_errors_test.main();
|
|
get_hover_test.main();
|
|
notification_errors_test.main();
|
|
notification_highlights_test.main();
|
|
notification_navigation_test.main();
|
|
notification_occurrences_test.main();
|
|
notification_outline_test.main();
|
|
notification_overrides_test.main();
|
|
update_content_test.main();
|
|
});
|
|
}
|