Can provide a datasource for gitlow tests? I don't want t use scenario outlines but I want to be able to run each specflow test with different configuration. Is it possible?
Asked
Active
Viewed 39 times
0
-
1Why don't you want to use scenario outlines? This is the standard way to run the same test several times with different configurations. – Sam Holder Mar 31 '15 at 08:11
-
The problem is that I want data to be dynamicaly generated. – Artur Shamsutdinov Mar 31 '15 at 22:17
-
Why do you need data dynamically generated? One of the main reasons for writing BDD tests is to make them perfectly reproducible every test run. With random data, you introduce instability in the system. It sounds like you either need to create more scenarios to test edge cases, or go with a Scenario Outline. – Greg Burghardt Apr 07 '15 at 12:38
-
Why do you think that the data will be random? It's not random, but just provided by the third-party source. – Artur Shamsutdinov Apr 07 '15 at 22:21