run_test_suite_lib/
lib.rs1#[cfg(feature = "fdomain")]
6extern crate component_debug_fdomain as component_debug;
7#[cfg(feature = "fdomain")]
8extern crate fuchsia_fs_fdomain as fuchsia_fs;
9
10mod artifacts;
11mod cancel;
12mod connector;
13pub mod diagnostics;
14mod outcome;
15pub mod output;
16mod params;
17mod realm;
18mod run;
19mod running_suite;
20mod stream_util;
21mod trace;
22
23pub use artifacts::copy_debug_data;
24pub use connector::{SingleRunConnector, SuiteRunnerConnector};
25pub use outcome::{ConnectionError, Outcome, RunTestSuiteError, UnexpectedEventError};
26pub use params::{RunParams, TestParams, TimeoutBehavior};
27pub use realm::parse_provided_realm;
28pub use run::{DirectoryReporterOptions, create_reporter, run_test_and_get_outcome};