Story story = parser.parseStory(wholeStory, storyPath);
Scenario scenario = story.getScenarios().get(0);
GivenStories givenStories = scenario.getGivenStories();
assertThat(givenStories.asString(), equalTo("path/to/one#{0}, path/to/two#{1}, path/to/three#{2}, path/to/four#{a}, path/to/five"));
assertThat(givenStories.toString(), containsString(givenStories.asString()));
assertThat(givenStories.getPaths(), equalTo(asList(
"path/to/one#{0}", // matches first parameters row
"path/to/two#{1}", // matches second parameters row
"path/to/three#{2}", // does not match any parameters row
"path/to/four#{a}", // does not use valid anchor (an int)