Move 17 library crates into crates/, CLI binary into bin/fxt, consolidate 10 test crates into testing/, split config crate from deployment config files. Root directory reduced from 38+ to ~17 directories. All Cargo.toml paths and build.rs proto refs updated. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
30 lines
712 B
Rust
30 lines
712 B
Rust
//! Unit tests organized by module
|
|
|
|
pub mod core;
|
|
pub mod ml;
|
|
pub mod risk;
|
|
pub mod data;
|
|
pub mod tli;
|
|
|
|
// Test modules
|
|
pub mod broker_execution_tests;
|
|
pub mod concurrency_safety_tests;
|
|
pub mod core_unit_tests;
|
|
pub mod edge_case_boundary_tests;
|
|
pub mod financial_property_tests;
|
|
pub mod financial_calculation_precision;
|
|
pub mod ml_model_accuracy_validation;
|
|
pub mod performance_benchmarks;
|
|
pub mod rainbow_dqn_multi_step_validation;
|
|
pub mod risk_management_tests;
|
|
pub mod trading_algorithm_correctness;
|
|
|
|
// Test modules in subdirectories (only include existing ones)
|
|
pub mod tests {
|
|
pub mod chaos_tests;
|
|
pub mod property_tests;
|
|
}
|
|
|
|
pub mod benches {
|
|
pub mod comprehensive_hft_performance_benchmarks;
|
|
} |