blob: 74ee5394d7ffb3dd3390e31d9a9e814ca6fa8754 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! Definitions specific to test suites that are implemented as ELF components (e.g. gtest and Rust
//! tests).
mod elf_component;
mod server;
pub use elf_component::{start_component, BuilderArgs, Component, ComponentError};
pub use server::{
EnumeratedTestCases, FidlError, KernelError, MemoizedFutureContainer, PinnedFuture,
SuiteServer, SuiteServerError,
};