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