Details
Description
Provide an alternative implementation of scenario parser that does not suffer from regex stack overflow issue:
http://jbehave.org/documentation/known-issues/regex-stack-overflow/
Provide an alternative implementation of scenario parser that does not suffer from regex stack overflow issue:
http://jbehave.org/documentation/known-issues/regex-stack-overflow/
Refactored multi-scenario parsing to split scenarios by keyword instead of pattern to avoid stack overflow on Windows.
Made splitScenarios(String) protected so behaviour can be overridden by subclasses. Previous split strategy is still available via protected method splitScenariosWithPattern(String).