use ;
/// Generates unique table prefixes for test isolation.
///
/// Each test gets a unique prefix in the format: `test_{process_id}_{test_counter}_`
/// This ensures that tests running in parallel (within or across processes) never
/// interfere with each other's database tables.
// Global counter shared across all tests in this process
static TEST_COUNTER: AtomicU32 = new;