testsvm-quarry 0.2.1

Quarry protocol testing utilities for Solana SVM testing framework
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use testsvm::prelude::*;

use crate::setup_quarry_programs;

pub fn init_test_environment() -> Result<TestSVM> {
    let mut env = TestSVM::init()?;
    setup_quarry_programs(&mut env)?;
    Ok(env)
}