a3bf271c88
R=paulberry@google.com, scheglov@google.com Review URL: https://codereview.chromium.org//812733004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@43120 260f80e4-7a28-3924-810f-c04153c831b5
39 lines
1.1 KiB
Dart
39 lines
1.1 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.engine;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'enum_test.dart' as enum_test;
|
|
import 'error_test.dart' as error;
|
|
import 'file_system/test_all.dart' as file_system;
|
|
import 'generated/test_all.dart' as generated;
|
|
import 'instrumentation/test_all.dart' as instrumentation;
|
|
import 'options_test.dart' as options;
|
|
import 'parse_compilation_unit_test.dart' as parse_compilation_unit;
|
|
import 'source/test_all.dart' as source;
|
|
import 'src/test_all.dart' as src;
|
|
import 'task/test_all.dart' as task;
|
|
import 'cancelable_future_test.dart' as cancelable_future_test;
|
|
|
|
|
|
/// Utility for manually running all tests.
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('analysis engine', () {
|
|
cancelable_future_test.main();
|
|
enum_test.main();
|
|
error.main();
|
|
file_system.main();
|
|
generated.main();
|
|
instrumentation.main();
|
|
options.main();
|
|
parse_compilation_unit.main();
|
|
source.main();
|
|
src.main();
|
|
task.main();
|
|
});
|
|
}
|