blob: 6f0df28ad8a68006f81cc96a044d75f3d790ce9f [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.
import 'package:unittest/unittest.dart';
import 'index/test_all.dart' as index_all;
import 'search/test_all.dart' as search_all;
/// Utility for manually running all tests.
main() {
groupSep = ' | ';
index_all.main();
search_all.main();
}