//! This example shows how you can use timeouts to make your tests abort if they
//! take too long.
//!
//! We're given an AVR that does nothing, while we think it should toggle a pin
//! on-and-off. By carefully constructing the test, using timeout, we prevent it
//! from running forever, waiting for a toggle that will never happen.
//!
//! See: [../../../avr-tester-fixtures/timeout/src/main.rs].
use AvrTester;