blob: 80a743c0f1d2bcbe163df35b24e0cb7516459fba [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.md file.
library fasta.test.outline_suite;
import 'suite_utils.dart' show internalMain;
import 'testing/suite.dart';
Future<FastaContext> createContext(
Chain suite, Map<String, String> environment) {
return FastaContext.create(suite, environment);
}
Future<void> main(List<String> arguments) async {
await internalMain(createContext, arguments: arguments);
}