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