I'm using Specflow Scenario Outline to run a list of different urls using Examples. However when checking Test Explorer the naming convention for each example is taking the last word after the full stop. I've tried finding something to do with formatting but run in to a dead end and couldn't find anything in here that matches my particular problem.
For example www.test.co.uk is showing as just 'uk in TestFeature'
Unfortunately in my test the URL is the unique value so when it comes to reporting it is clear what urls have been tested in the scenario...otherwise I would've used the Client name.
Packages in Solution include: NUnit, Specflow, SpecRun
Scenario Outline example below:
Scenario Outline: The login page for a given client is displayed when navigated to it
When I load the URL '<URL>'
Then The login page is displayed for client '<Client>'
Examples:
| URL | Client |
| http://www.test1.co.uk | Someone1 |
| http://www.test2.co.uk | Someone2 |
| http://www.test3.co.uk | Someone3 |
| http://www.test4.co.uk | Someone4 |
| http://www.test5.co.uk | Someone5 |
| http://www.test6.co.uk | Someone6 |
| http://www.test7.co.uk | Someone7 |
| http://www.test8.co.uk | Someone8 |
| http://www.test9.co.uk | Someone9 |
| http://www.test10.co.uk | Someone10 |
Test Explorer:
If anymore info is required let me know. I'm using Visual Studio 2017 as my IDE and SpecFlow 2.4.1, SpecRun 1.8.5.