aptos_testcontainer/lib.rs
1//! # Overview
2//! This module provides a simple and smart test container framework for testing interactions
3//! with an Aptos node. The framework is designed to easily initialize and manage a containerized
4//! Aptos environment, making it straightforward to write integration tests for Aptos-based
5//! applications.
6
7/// Responsible for handling the logic of an Aptos container.
8pub mod aptos_container;
9mod config;
10/// Defines error types and custom error handling related to the Aptos container operations.
11pub mod errors;
12/// Provides utilities and helper functions for testing the Aptos container.
13pub mod test_utils;
14/// A helper function used across the test container.
15pub mod utils;