Any sequence of scenarios containing parametrised steps, using exactly the same mechanism in play with the Examples. E.g.
GivenStories: org/jbehave/examples/trader/stories/parametrised.story#{0}
When the stock is traded at price 1.1
Then the alert status is ON
Examples:
|symbol|threshold|
|STK1 |1.0|
where the parametrised story might look like:
Scenario:
Given a stock of <symbol> and a <threshold>
The parameters are picked up from the table row specified in the anchor. So we now have parametrised GivenStories, in addition to the parametrised Scenarios we've always had.
Note that since the Examples table is used to provide data to the GivenStories, it is not being used to parametrise at the same time the scenario itself (it looks for the presence of anchors in the GivenStories paths). Nothing technically stopping us from using the examples table in parametrising both the GivenStories and the scenario itself, but it'd most probably lead to confusion. We could use the new feature of ExamplesTable (JBEHAVE-371) to pass in some directive, e.g.:
Examples:
{scope=Scenario}
|symbol|threshold|
|STK1 |1.0|
But that's probably another story ...
How do you think to use it inside the included story ?