Files
foxhunt/tli/tests/lib.rs
jgrusewski 6093eac7bf 🔧 Tonic 0.14 Upgrade: Auto-generated and build system changes
Wave 64-65 cleanup: Proto regeneration and build system updates from Tonic 0.12→0.14 upgrade

Files updated:
- Cargo.lock: Dependency resolution for Tonic 0.14.2
- All build.rs: Updated for tonic-prost-build
- Proto files: Regenerated with tonic-prost 0.14
- Examples/tests: Updated for new gRPC API

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-03 07:34:26 +02:00

20 lines
752 B
Rust

//! 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 <test_name>