Skip to main content

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    MockTransactionInput,
17};
18
19mod mock_transaction;
20#[cfg(test)]
21pub(crate) use mock_transaction::TestTransactionBuilder;
22pub use mock_transaction::{ExecError, MockTransaction, MockTransactionBuilder};
23
24pub mod asserts;
25
26pub mod executor;
27
28#[cfg(test)]
29mod mock_host;
30
31pub mod utils;
32
33#[cfg(test)]
34mod assertion;
35
36#[cfg(test)]
37mod kernel_tests;
38
39#[cfg(test)]
40mod standards;