foxglove 0.18.0

Foxglove SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Test utilities.

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

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