#[scenario_linkme]
Expand description
Proc macro to denote a Scenario
NOTE: Currently this macro only works on functions which take no arguments and with no return value. (void functions). This is a restriction which will be lifted soon.
See the Scenario
struct for more information on the methods this macro provides on functions.
§Example
ⓘ
use balter::prelude::*;
#[scenario]
fn my_scenario() {
}