blob: 6ff523a75b07ddca5f57663ac48bb98077152c24 [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.
@TestOn('vm')
import 'package:test/test.dart';
import 'fixtures/context.dart';
import 'evaluate_circular_common.dart';
void main() async {
// Enable verbose logging for debugging.
final debug = false;
for (var nullSafety in NullSafety.values) {
group('${nullSafety.name} null safety |', () {
testAll(
compilationMode: CompilationMode.buildDaemon,
nullSafety: nullSafety,
debug: debug,
);
});
}
}