1 2 3 4 5 6 7 8 9 10 11 12 13
//! Solana testing utilities and fixtures //! //! Protocol-specific fixture setup functions. For core test infrastructure //! (TestContext, execute, fund_token, etc.), use `solana-test-core` directly. mod internal; pub mod protocols; // Re-export solana-test-core for convenience pub use wp_solana_test_core::{ self, execute, execute_with_logs, fund_token, fund_wsol, load_accounts_json, load_program, new_test_context, override_mint_authority, set_account, TestContext, };