blob: b18bf758b6fee9e3272210b69b75ed4f41e382cb [file] [log] [blame]
// Copyright (c) 2016, 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 'utils/suite_utils.dart' show internalMain;
import 'testing/environment_keys.dart';
import 'testing/suite.dart';
Future<FastaContext> createContext(
Chain suite, Map<String, String> environment) {
environment[EnvironmentKeys.soundNullSafety] = "true";
return FastaContext.create(suite, environment);
}
Future<void> main([List<String> arguments = const []]) async {
await internalMain(
createContext,
arguments: arguments,
displayName: "outline suite",
configurationPath: "../testing.json",
);
}