ποΈ Hello World
The smallest possible SpecBinder example. A single scenario with plain steps β no parameters, no rules, no configuration.
ποΈ Step Parameters
How quoted values in Gherkin steps become typed Java method parameters with automatic type inference.
ποΈ Implementing Steps
A fully working example β step methods are implemented in the marker class with real assertions, and tests run green.
ποΈ Rules
Gherkin Rule blocks group related scenarios under a business rule. They map to JUnit @Nested test classes.
ποΈ Background
Gherkin Background blocks set up shared state for every scenario in their scope. They map to JUnit @BeforeEach methods.
ποΈ Scenario Outline
Scenario Outline with an Examples table maps to JUnit's @ParameterizedTest + @CsvSource.
ποΈ Tags
Gherkin tags (@smoke, @regression, β¦) map to JUnit @Tag annotations for selective test execution.