pub trait ProgramTestExt {
// Required method
fn deploy_program(&mut self, program_id: Pubkey, program_bytes: &[u8]);
}Expand description
Extension trait for LiteSVM to add program deployment capabilities
Required Methods§
Sourcefn deploy_program(&mut self, program_id: Pubkey, program_bytes: &[u8])
fn deploy_program(&mut self, program_id: Pubkey, program_bytes: &[u8])
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".