dart-sdk/pkg/testing/test/analyze_test.dart
Jens Johansen 6c897ba077 Remove unused options from package:testing (batch 2)
Change-Id: I7f9227f3b00d84db5c29e8e5da88dba69def91cc
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/346760
Commit-Queue: Jens Johansen <jensj@google.com>
Reviewed-by: Johnni Winther <johnniwinther@google.com>
2024-01-19 08:15:03 +00:00

13 lines
507 B
Dart

// Copyright (c) 2017, 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 "package:testing/src/run_tests.dart" as testing show main;
Future<void> main() {
// This method is async, but keeps a port open to prevent the VM from exiting
// prematurely.
return testing.main(
<String>["--config=pkg/testing/testing.json", "--verbose", "analyze"]);
}