Chris Rudolphi

Results 61 comments of Chris Rudolphi
trafficstars

First end-to-end working scenario is operational. Needed out of a PR review: - Overall code structure - Patterns that have been used (good/bad) and patterns that should have been used...

Build is failing b/c I have a private build of Cucumber Messages nuget package. When the next release of that comes out, I will patch up the nuget references in...

Thanks for pointing that out. The intent of the catch is to prevent picking problems from interfering with test generation. I'll improve the error handling here by logging the exception...

I believe this is now ready for a shakedown and code review. I've fixed the issues that I'm aware of and completed my punch-list. Documentation is updated. I've tested it...

It looks like Cucumber Messages schemas are changing in an upcoming release [PR102](https://github.com/cucumber/messages/pull/102). This will require some changes to logic within the Messages implementation. If you can, please go ahead...

> It looks like Cucumber Messages schemas are changing in an upcoming release [PR102](https://github.com/cucumber/messages/pull/102). This will require some changes to logic within the Messages implementation. If you can, please go...

Behavior Question: Retry and Undefined Steps. According to the Cucumber Compatibility Kit, when a test fails because there is an UNDEFINED step, it is expected that there will be no...

Retry and TestCaseFinished messages -- non-compliance with CCK. When a TestCase completes, Messages writes a TestCaseFinished message, such as this: ```javascript {"testCaseFinished":{"testCaseStartedId":"54","timestamp":{"seconds":1737648321,"nanos":361094000},"willBeRetried":false}} ``` Note the "willBeRetried" boolean flag at the...

> we might be able to queue them up and only write them upon receipt of the AfterTestRun event (and take that opportunity to patch up 'willBeRetried' values for any...

Merged in changes that provide for support of Retried test cases. These changes refactored how execution progress is tracked and accounts for retried scenarios. Message generation is deferred until the...