//! Integration tests for the Aptos SDK.
//!
//! ## Test Categories
//!
//! - **behavioral**: Behavioral/specification tests that don't require network access
//! - **e2e**: End-to-end tests that require a running localnet
//!
//! ## Running Tests
//!
//! ```bash
//! # Unit + behavioral tests (default)
//! cargo test -p aptos-sdk --features "full"
//!
//! # Include E2E tests (requires localnet)
//! cargo test -p aptos-sdk --features "full,e2e" -- --ignored
//! ```
// E2E tests are only compiled when the `e2e` feature is enabled
// They also require the `faucet` feature which is included in `e2e`