//! Integration tests for `probe_daemon` — verifies the public API is
//! exported correctly and the happy-path probe works end-to-end.
use TcpListener;
use DaemonProbe;
use probe_daemon;
/// Bind an OS-assigned port, probe it — should return Ok(()).
///
/// This is the integration-level sanity check that the public API is wired up
/// correctly. The unit-level tests in `src/daemon/probe.rs` cover error paths.