Expand description
§serial_test
serial_test
allows for the creation of serialised Rust tests using the serial attribute
e.g.
#[test]
#[serial]
fn test_serial_one() {
// Do things
}
#[test]
#[serial]
fn test_serial_another() {
// Do things
}
Multiple tests with the serial attribute are guaranteed to be executed in serial. Ordering of the tests is not guaranteed however.
Attribute Macros§
- Allows for the creation of serialised Rust tests