//! Common test utilities and fixtures.
//!
//! Since only one Rayforce runtime can exist at a time,
//! tests must run serially (use #[serial] attribute).
use ;
/// Create a new runtime for testing.
/// Macro to run a test with a fresh runtime.
/// Usage: with_runtime!(rf, { ... })
/// Macro for tests that don't need the runtime reference but need it initialized.
/// Usage: init_runtime!();