everyTest function
- @isTestGroup
- String description, {
- required EveryTestCallback of,
- required List<
EveryTestParameter> expects,
Entry point to create a new 'everytest' series Uses a builder to store every arguments before run the tests
Implementation
@isTestGroup
EveryTestBuilder everyTest(
String description, {
required EveryTestCallback of,
required List<EveryTestParameter> expects,
}) =>
EveryTestBuilder(description)
.._of(of)
.._expects(expects)
.._run();