miden_testing/lib.rs
1#![no_std]
2
3#[macro_use]
4extern crate alloc;
5
6#[cfg(any(feature = "std", test))]
7extern crate std;
8
9mod mock_chain;
10pub use mock_chain::{
11 AccountState,
12 Auth,
13 MockChain,
14 MockChainBuilder,
15 MockChainNote,
16 ProvenTransactionExt,
17 TxContextInput,
18};
19
20mod tx_context;
21pub use tx_context::{TransactionContext, TransactionContextBuilder};
22
23pub mod executor;
24
25pub use mock_host::MockHost;
26mod mock_host;
27
28pub mod utils;
29
30#[cfg(test)]
31mod kernel_tests;