testsvm-quarry 0.2.1

Quarry protocol testing utilities for Solana SVM testing framework
Documentation
//! # TestSVM Quarry Prelude
//!
//! Common imports for testing Quarry protocol applications.
//!
//! This module re-exports the most commonly used types from the testsvm-quarry
//! crate along with TestSVM core functionality, providing everything needed
//! for testing Quarry-based applications with a single import:
//!
//! ```rust
//! use testsvm_quarry::prelude::*;
//! ```
//!
//! ## Included Exports
//!
//! - **Quarry Test Types**: Test helpers for rewarder, quarry, miners, and pools
//! - **Quarry Programs**: Generated types from declare_program! macros
//! - **Setup Functions**: Helper functions for program initialization

pub use crate::setup_quarry_programs;
pub use crate::{TestMergeMiner, TestMergePool, TestMintWrapper, TestQuarry, TestRewarder};
pub use crate::{quarry_merge_mine, quarry_mine, quarry_mint_wrapper};