blob: f85b0de461ba569f17a0de6098d8e58684bb22f5 [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.
@TestOn('vm')
import 'package:test/test.dart';
import 'fixtures/context.dart';
import 'evaluate_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,
);
});
}
}