You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
causes this error when we have scenario titles like this:
Scenario Outline: This is a great title
(with 3 examples)
Scenario Outline: This is a great title and does also something more
(with 5 examples)
This is because the mapping to the test results is done on StartsWith. Causing the second one to map on the first one. The second scenario outline has 5 examples, but is mapped on the first one with 3 examples. Causing an index out of range exception. Pickles did not complete successfully Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
The text was updated successfully, but these errors were encountered:
The implementation of this function in
VsTestElementExtensions.cs
causes this error when we have scenario titles like this:
This is because the mapping to the test results is done on StartsWith. Causing the second one to map on the first one. The second scenario outline has 5 examples, but is mapped on the first one with 3 examples. Causing an index out of range exception.
Pickles did not complete successfully Index was out of range. Must be non-negative and less than the size of the collection. (Parameter 'index')
The text was updated successfully, but these errors were encountered: