foxglove 0.25.3

Foxglove SDK
Documentation
//! Test utilities.

mod global_context;
mod mcap;
mod sink;
#[cfg(feature = "websocket")]
mod websocket;
#[cfg(feature = "websocket")]
mod websocket_client;

pub use global_context::GlobalContextTest;
pub(crate) use mcap::read_summary;
pub use sink::{ErrorSink, MockSink, RecordingSink};
#[cfg(feature = "websocket")]
pub(crate) use websocket::{
    RecordingGetBehavior, RecordingParameterHandler, RecordingServerListener, RecordingSetBehavior,
    assert_eventually,
};
#[cfg(feature = "websocket")]
pub use websocket_client::{WebSocketClient, WebSocketClientError};