test_runners_lib/elf/mod.rs
1// Copyright 2020 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
5//! Definitions specific to test suites that are implemented as ELF components (e.g. gtest and Rust
6//! tests).
7
8mod elf_component;
9mod server;
10
11pub use elf_component::{start_component, BuilderArgs, Component, ComponentError};
12pub use server::{
13 EnumeratedTestCases, FidlError, KernelError, MemoizedFutureContainer, PinnedFuture,
14 SuiteServer, SuiteServerError,
15};