// Test helper modules for Dew Vault testing // // This module provides test infrastructure for vault-only testing (no kernel). // Kernel functionality is no longer needed for vault tests. pub mod constants; pub mod factory_setup; pub mod integration_context; pub mod owner_operations; pub mod vault_operations; pub use constants::*; pub use factory_setup::*; pub use integration_context::*; pub use owner_operations::*; pub use vault_operations::*; /// Result type for test operations pub type TestResult = Result>; /// Common test constants pub const INITIAL_BALANCE: u128 = 1_000_000_000_000; // 1M tokens with 6 decimals pub const DEFAULT_TOKEN_DECIMALS: u8 = 6; pub const DEFAULT_EXTRA_DECIMALS: u8 = 18; pub const DEFAULT_GAS: u64 = 300; // TGas pub const HIGH_GAS: u64 = 300; // TGas for complex operations