feat(utils): add test utils module

- add test_utils module to provide common utilities for tests
- add get_test_logger function for initializing test logger
This commit is contained in:
Jeremiah Russell
2025-10-16 11:00:11 +01:00
committed by Jeremiah Russell
parent 959e61743e
commit 8ab89cdb0a
2 changed files with 10 additions and 0 deletions

View File

@@ -13,6 +13,8 @@ mod message_list;
mod retention;
mod rule_processor;
mod rules;
#[cfg(test)]
pub(crate) mod test_utils;
pub(crate) mod utils;