//! Test helpers for behavior runtime
//!
//! This module provides utilities for testing behaviors without requiring external dependencies.
use Context;
/// Create a test context that doesn't require Redis or other infrastructure.
///
/// This is a helper for unit tests that need a Context but don't actually use messaging.
/// For integration tests that need real messaging, use Context::new() with proper infrastructure.
pub async