agent_sdk_toolkit/testing/mod.rs
1//! Toolkit-specific deterministic test helpers. Use these fakes for content stores,
2//! argument stores, and scripted protocol harnesses without live editors, MCP
3//! servers, or product hosts. Helpers mutate only in-memory state unless noted.
4//!
5pub mod protocol;
6
7mod stores;
8
9pub use protocol::{
10 IsolatedJsonRpcProcess, McpHostProxy, ScriptedAcpAgent, ScriptedAcpClient, ScriptedMcpServer,
11};
12pub use stores::{InMemoryJsonArgumentStore, InMemoryToolkitContentStore};