Dev Tools
Testes (Programas Solana)
📖O que é
The process of validating Solana programs through unit tests, integration tests, and fuzz testing. Common approaches: Rust tests with solana-program-test or LiteSVM (fast, in-process), TypeScript tests with Bankrun or solana-test-validator (end-to-end), and fuzz testing with Trident. Best practice is testing both happy paths and attack vectors (missing signers, wrong owners).
Sua exploração
0 termos visitados no totalTermos relacionados explorados0/3
Termos Relacionados
Bankrun (solana-bankrun)Dev Tools
A fast Solana testing framework (solana-bankrun for TypeScript, bankrun for Rust) that run…
Ver termo →LiteSVMDev Tools
A lightweight Solana VM for testing Rust programs. LiteSVM provides a minimal SVM environm…
Ver termo →anchor init / anchor build / anchor testDev Tools
Anchor CLI commands for project lifecycle. `anchor init <name>` scaffolds a new project (p…
Ver termo →