blob: 31a376c47e237ab03083ffd1ce499689d20f0d17 [file] [log] [blame]
// Copyright (c) 2017, 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 'code_order_test.dart' as code_order;
import 'extra_code_test.dart' as extra_code;
import 'missing_code_test.dart' as missing_code;
import 'paired_tokens_test.dart' as paired_tokens;
main() {
defineReflectiveSuite(() {
code_order.main();
extra_code.main();
missing_code.main();
paired_tokens.main();
}, name: 'recovery');
}