scenario

Used for SCENARIO block BDD

void
scenario
(
string name
string[] tags
T
)
(
lazy T expression
)

Parameters

name

Name of scenario.

tags

Array tags for scenario.

expression
Type: T

Tested block.

V

BlockManagerInterface for collecting blocks

Examples

scenario!("Test scenario", ["test"])
({
  writeln("TEST");
});

Meta