motorcortex-rust 0.5.0

Motorcortex Rust: a Rust client for the Motorcortex Core real-time control system (async + blocking).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Shared helpers for integration tests.
//!
//! Pulled in from `tests/integration.rs` via `mod common;`. Not all
//! integration test files use every helper — the `allow(dead_code)` knobs
//! below silence the per-binary unused-warning noise that Cargo emits when a
//! helper is referenced by some tests but not others.

#[allow(dead_code)]
pub mod parameters;

// `setup` wires `ctor::ctor` / `ctor::dtor` hooks that spawn and reap the
// vendored test_server once per test binary. Merely `mod`ing it is enough to
// activate the hooks — nothing else imports from it.
#[allow(dead_code)]
pub mod setup;