21 lines
315 B
Rust
21 lines
315 B
Rust
/// 测试模块
|
|
/// 包含所有单元测试、集成测试和性能测试
|
|
|
|
#[cfg(test)]
|
|
pub mod test_utils;
|
|
|
|
#[cfg(test)]
|
|
pub mod repository_tests;
|
|
|
|
#[cfg(test)]
|
|
pub mod service_tests;
|
|
|
|
#[cfg(test)]
|
|
pub mod integration_tests;
|
|
|
|
#[cfg(test)]
|
|
pub mod performance_tests;
|
|
|
|
#[cfg(test)]
|
|
pub mod comfyui_v2_config_test;
|