aboutsummaryrefslogtreecommitdiff
path: root/src/testkit.rs
blob: 215a06201da29f3c439edaf3c5a1e0accfc5a413 (plain)
1
2
3
4
5
6
7
8
9
10
//! utilities to validate that implementations of traits in `yaxpeax-arch` uphold requirements
//! described in this crate.
//!
//! currently, this only includes tools to validate correct use of
//! [`crate::display::DisplaySink`], but may grow in the future.

#[cfg(feature="alloc")]
mod display;
#[cfg(feature="alloc")]
pub use display::{DisplaySinkValidator, DisplaySinkWriteComparator};