blob: 8052c9edeba4a5a05599efb17b42d3d43ff766ee [file] [log] [blame]
// Copyright (c) 2016, 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 analyzer.test.src.dart.sdk.test_all;
import 'package:unittest/unittest.dart';
import '../../../utils.dart';
import 'sdk_test.dart' as sdk;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
group('sdk tests', () {
sdk.main();
});
}