//! TLI Comprehensive Test Library //! //! This library provides comprehensive testing infrastructure for the TLI (Terminal Line Interface) //! system, including unit tests, integration tests, performance tests, property-based tests, //! and continuous test monitoring. #![allow(unused_crate_dependencies)] // Core test modules pub mod integration; pub mod mocks; // REMOVED: All pub use statements eliminated per cleanup requirements // Tests must import from canonical sources: // use integration::{integration_test, TestConfig, TestUtilities}; // use mocks::*; // Re-export the main test runner from mod.rs if needed // This allows running tests with: cargo test --lib // Individual test files can also be run with: cargo test --test