blob: 201086849827b1aec13b8ba3bd921c234a189d6b [file] [log] [blame]
// Copyright (c) 2020, 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 'analysis_session_test.dart' as analysis_session;
import 'ast_test.dart' as ast;
import 'async_test.dart' as async;
import 'collection_test.dart' as collection;
import 'library_element_test.dart' as library_element;
import 'object_test.dart' as object;
import 'stream_test.dart' as stream;
import 'string_test.dart' as string;
main() {
defineReflectiveSuite(() {
analysis_session.main();
ast.main();
async.main();
collection.main();
library_element.main();
object.main();
stream.main();
string.main();
}, name: 'extensions');
}