blob: b66e99a46ac95540654e6a443ddb9f4d95353320 [file] [log] [blame]
// Copyright (c) 2022, 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:test_reflective_loader/test_reflective_loader.dart';
import 'dart/test_all.dart' as dart;
import 'snippet_manager_test.dart' as snippet_manager;
import 'snippet_request_test.dart' as snippet_request;
void main() {
defineReflectiveSuite(() {
dart.main();
snippet_manager.main();
snippet_request.main();
}, name: 'snippets');
}