Skip to main content

mempill_core/testing/
mod.rs

1//! Test support utilities for mempill-core.
2//!
3//! Gated by `#[cfg(any(test, feature = "test-support"))]`.
4//! Not compiled into production builds.
5
6#[cfg(any(test, feature = "test-support"))]
7pub mod conformance;
8
9#[cfg(any(test, feature = "test-support"))]
10pub mod oracle_conformance;