Chris Rudolphi

Results 61 comments of Chris Rudolphi
trafficstars

I believe this is working. I put together a small test project to attempt to recreate your problem. With a feature file containing: `'' Scenario: TestingStepArgConverter Given a myclass of...

The EnumerableValueRetriever (which processes lists/collections) makes an assumption that every item in the list can be processed by the same underlying value retriever. So when the Value string has "1,...

I don't have the background that you all do, so I'll defer to you on the original intent. I can imagine the input being quite messy with special values that...

I have investigated this a bit and have a few suggestions. 1. The first option is not use the BeforeTestRun hook, but to use the BeforeFeature hook. As long as...

Would there be an interest in adding that as a feature? I will draft a prototype if there is interest.

I have looked into this and have an approach that "works" - kind of. As mentioned in this thread above, Tags are not allowed on individual Steps. That makes more...

As an experiment I converted the Additional Assembly example to Nunit and observed the same behavior. Works in VS but not with the Nunit console runner.

@Pianykh how are you invoking the nunit-console .exe - by setting your default directory to the location of the runner and then invoking the runner with the full path of...

The reason I had described it that way was because I had debugged the test from the nunit-console runner using the --debug option and discovered that the specflow.json configuration file...

> I would like try similar concept by placing Gherkin feature steps (And/Then) in an external file instead of examples: Test data and call it inside a scenario. Can you...