testsvm 0.2.1

A comprehensive testing framework for Solana SVM (Solana Virtual Machine) programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # TestSVM Prelude
//!
//! Common imports for TestSVM users.
//!
//! This module re-exports the most commonly used types and traits from the TestSVM
//! framework, allowing users to import everything they need with a single use statement:
//!
//! ```rust
//! use testsvm::prelude::*;
//! ```

// Core TestSVM types
pub use anchor_spl;
pub use testsvm_assertions::{TXErrorAssertions, TXResultAssertions, TXSuccessAssertions};
pub use testsvm_core::prelude::*;
pub use testsvm_spl::prelude::*;