risingwave_hummock_test/
lib.rs1#![feature(proc_macro_hygiene)]
16#![feature(custom_test_frameworks)]
17#![test_runner(risingwave_test_runner::test_runner::run_failpont_tests)]
18
19#[cfg(test)]
20mod auto_rebuild_iter_tests;
21#[cfg(test)]
22mod compactor_tests;
23#[cfg(all(test, feature = "failpoints"))]
24mod failpoint_tests;
25#[cfg(test)]
26mod snapshot_tests;
27#[cfg(test)]
28mod state_store_tests;
29#[cfg(any(test, feature = "test"))]
30pub mod test_utils;
31
32#[cfg(test)]
33mod hummock_read_version_tests;
34
35#[cfg(test)]
36mod hummock_storage_tests;
37
38#[cfg(test)]
39mod hummock_vector_tests;
40
41mod mock_notification_client;
42#[cfg(all(test, feature = "sync_point"))]
43mod sync_point_tests;
44
45pub mod local_state_store_test_utils;
48
49pub use mock_notification_client::get_notification_client_for_test;