Skip to main content

orca_core/testing/
mod.rs

1//! Test utilities for orca crates.
2//!
3//! Provides [`MockRuntime`] for testing components that need a [`Runtime`]
4//! without requiring Docker or wasmtime.
5
6mod mock_runtime;
7
8pub use mock_runtime::MockRuntime;