//! Mock process executor for testing.
//!
//! This module provides mock implementations of `ProcessExecutor` and `AgentChild`
//! used by unit tests and integration tests (via the `test-utils` feature).
/// Type alias for captured execute calls.
///
/// Each call is a tuple of (command, args, env, workdir).
pub type ExecuteCall = ;
pub use MockAgentChild;
pub use MockProcessExecutor;