ElkanRoelen / behatformatter

Behat 3 Twig formatter
Other
17 stars 17 forks source link

Fix PHP Notice: Undefined offset #11

Open tame4tex opened 5 years ago

tame4tex commented 5 years ago

I was getting a PHP Notice: Undefined offset: in vendor/elkan/behatformatter/src/Formatter/BehatFormatter.php on line 749 due to the incorrect incrementing of $this->currentExampleCount after every step.

Instead, I have implemented the method onBeforeExampleScenarioTested() to be called before a scenario example is tested. I have moved the setting and incrementing of the currentExampleCount property to this method.