run_test_suite_lib/
lib.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod artifacts;
6mod cancel;
7mod connector;
8pub mod diagnostics;
9mod outcome;
10pub mod output;
11mod params;
12mod realm;
13mod run;
14mod running_suite;
15mod stream_util;
16mod trace;
17
18pub use artifacts::copy_debug_data;
19pub use connector::{RunBuilderConnector, SingleRunConnector};
20pub use outcome::{ConnectionError, Outcome, RunTestSuiteError, UnexpectedEventError};
21pub use params::{RunParams, TestParams, TimeoutBehavior};
22pub use realm::parse_provided_realm;
23pub use run::{create_reporter, run_tests_and_get_outcome, DirectoryReporterOptions};