blob: d6b119e189d621c8309ee6639bb8b67ea20c5bad [file] [log] [blame]
// 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.services.completion;
import 'package:unittest/unittest.dart';
import '../../utils.dart';
import 'completion_target_test.dart' as completion_target_test;
import 'dart/test_all.dart' as dart_contributor_tests;
import 'optype_test.dart' as optype_test;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
group('completion', () {
completion_target_test.main();
dart_contributor_tests.main();
optype_test.main();
});
}