Report index of executing examples table row
Description
Activity
Mauro Talevi February 14, 2019 at 8:12 AM
Pulled with thanks

Valery Yatsynovich February 8, 2019 at 4:53 PM
Hi ,
Here is one of implementations (that is not fully correct), which is inventing the logic around examples indexes:
https://github.com/reportportal/agent-java-jbehave/blob/master/src/main/java/com/epam/reportportal/jbehave/JBehaveContext.java#L169.
Please let me know what you think of proposed improvement.
Thanks,
Valery

Valery Yatsynovich November 17, 2018 at 10:22 PM
Hi Mauro,
I'm working on several projects using JBehave. These projects use different reporting engines and in many cases it's good to see list of scenario iterations like:
scenario [1]
scenario [2]
scenario [3]
Logic of index calculation is not very trivial, since for example filtering, given stories should be taken into account, and this logic should be duplicated for each reporter. At the same time JBehave has this information and does't require any extra logic. So I decided that this change may bring benefits for all who builds/uses some advanced reporting on top of JBehave.
Mauro Talevi November 17, 2018 at 10:12 PM
Hi Valery,
not quite sure I grasp the rationale behind this improvement. Could you please detail a concrete use case?
Thanks

Valery Yatsynovich November 17, 2018 at 2:15 PM
Hi ,
Could you please review the pull request: https://github.com/jbehave/jbehave-core/pull/213/files?w=1 ?
Thanks
Some examples may be filter out during execution, taking into account this fact it becomes difficult to get index of current executing table row.
Update
StoryReporter
to report zero-based index of current example row.