Macro normalize_test_name_with_parts

Source
macro_rules! normalize_test_name_with_parts {
    ($($part:expr),+) => { ... };
}
Expand description

Macro to generate a normalized test name with module path prefix. Takes one or more string parts and joins them with the module path.

Example:

// Returns something like "rest_catalog_test__test_create_table"
let name = normalize_test_name_with_parts!("test_create_table");

// Returns something like "rest_catalog_test__apple__ios"
let name = normalize_test_name_with_parts!("apple", "ios");