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
Execute arbitrary NUnit3 test assembly with parametrized [TestCase]s with VSTest task (version 2.0.55) => Full Qualifed Test Name is parsed (or concatenated) wrongly.
My assumption is that the last '.' is used to identify the delimiter of className and the name of the Test Case name.
But as the test case is parametrized with Parameters having "." (dots) e.g. (-25.0d,-25) the parsing goes wrong somehow.
(Same applies sometimes with the "," if the className attribute in TRX has a namespace given - which is given after a ", ", e.g. className="SomeArbitraryClassName, ItsNameSpace"
(Or how is the semantic of className ?)
The text was updated successfully, but these errors were encountered:
Environment
Issue Description
Execute arbitrary NUnit3 test assembly with parametrized [TestCase]s with VSTest task (version 2.0.55)
=> Full Qualifed Test Name is parsed (or concatenated) wrongly.
Snippet of generated .trx file
My assumption is that the last '.' is used to identify the delimiter of
className
and thename
of the Test Case name.But as the test case is parametrized with Parameters having "." (dots) e.g.
(-25.0d,-25)
the parsing goes wrong somehow.(Same applies sometimes with the "," if the className attribute in TRX has a namespace given - which is given after a ", ", e.g.
className="SomeArbitraryClassName, ItsNameSpace"
(Or how is the semantic of className ?)
The text was updated successfully, but these errors were encountered: