blob: 95c1b2e0698610ea8c603348351311be4ce47fc7 [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:test_reflective_loader/test_reflective_loader.dart';
import 'evaluation_test.dart' as evaluation;
import 'potentially_constant_test.dart' as potentially_constant;
import 'utilities_test.dart' as utilities;
import 'value_test.dart' as value;
main() {
defineReflectiveSuite(() {
evaluation.main();
potentially_constant.main();
utilities.main();
value.main();
}, name: 'constant');
}