blob: c4223b8a1b5cd593e35228cc2d032c10f145ff8e [file] [log] [blame]
// Copyright (c) 2024, 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 'dart:io';
import 'package:test/test.dart';
import '../shared_test_options.dart';
import 'expression_compiler_e2e_suite.dart';
void runTests(ExpressionEvaluationTestDriver driver, SetupCompilerOptions setup,
String mode) {
group('$mode mode', () {
const source = r'''
void main() {
print('hello world');
}
''';
tearDown(() async {
await driver.cleanupTest();
});
tearDownAll(() async {
await driver.finish();
});
test('is automatically set to the configuration value', () async {
await driver.initSource(setup, source);
expect(
File(driver.dartSdkPath).readAsStringSync(),
setup.canaryFeatures
? contains('canary')
: isNot(contains('canary')));
});
});
}