Sorry for the repeat question but may be I am not seeing how it is used for End to End.. Here's my example if you can help me connect the dotsIteration testing
Scenario1: X data for instrument A from Application 1 is correctly loaded in the message
Given X data for instrument A is in the Application 1
When the message is published
Then the message is created for X data for instrument A from Application 1
Scenario2: XML is created for X data for instrument A from the message
Given the message for X data for instrument A is published
When the XML creator is run
Then the XML is created for X data for instrument A
Scenario3: X data for instrument A from the XML is loaded in Application 2
Given the XML for X data for instrument A is created
When the Application 2 import process is run
Then the X data for instrument A is loaded in Application 2
How will I use SpecFlow to test these 3 scenarios in end to end regression?
This is how I am thinking I can use SpecFlow..
Run SpecFlow for all 3 scenarios and then write a End to End Regression test like
RegressionScenario: X data for instrument A is sent from Application 1 to Application 2
Given X data for instrument A is in Application 1
When Application 2 import process is run
Then X data for instrument A in Application 1 is loaded in Application 2
Would this be correct?
Please advise.