I'm using SpecFlow scenario outlines to generate multiple tests based off a single test case in Azure DevOps. Then I am using azure devops release pipeline to deploy the tests and run them using an automated test plan.
The problem I am having is a SpecFlow Scenario Outline represents 1 test case in Azure DevOps, but I can only link 1 of the 4 generated Test Explorer tests to a test case via "Associate to Test Case" to Azure DevOps. When I deploy the pipeline it only runs the single test that is associated, not every test in the Scenario Outline. How can I get it to run all the tests in Scenario Outline?
Example:
I can only right click on AddingUserInformationScenarioOutline("1",null) and link that specific test to VSTS, I cannot link the higher grouping AddingUserInformationScenarioOutline(4). Running the test plan will result in just test AddingUserInformationScenarioOutline("1",null) being run.