blob: 486f7479ca60f6c102b7f6ef4493b24719047d70 [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')),
);
});
});
}