miden_testing/
lib.rs

1#![no_std]
2
3#[macro_use]
4extern crate alloc;
5
6#[cfg(test)]
7extern crate std;
8
9mod mock_chain;
10pub use mock_chain::{
11    AccountState, Auth, MockChain, MockChainNote, MockFungibleFaucet, ProvenTransactionExt,
12    TxContextInput,
13};
14
15mod tx_context;
16pub use tx_context::{TransactionContext, TransactionContextBuilder};
17
18pub mod executor;
19
20pub use mock_host::MockHost;
21mod mock_host;
22
23pub mod utils;
24
25#[cfg(test)]
26mod kernel_tests;