When converting trx results to xml testcase name field in xml shows incorrect data
Steps to reproduce
Create trx files with dotnet test --logger "trx;LogFilePrefix=UnitTestResult" -r /reports
Run trx2junit /reports/*
What is the current bug behavior?
When there's a dot/dots in a testcase name, only the part after the last dot ends up in xml testcase name field.
For example I get this value:
testcase name="5 TB")"
instead of
testcase name="SomeText("1.5 TB")"
Summary
When converting trx results to xml testcase name field in xml shows incorrect data
Steps to reproduce
What is the current bug behavior?
When there's a dot/dots in a testcase name, only the part after the last dot ends up in xml testcase name field. For example I get this value:
testcase name="5 TB")"
instead oftestcase name="SomeText("1.5 TB")"
What is the expected correct behavior?
Unchanged testcase name is in xml
Relevant logs and/or screenshots
Further technical details
trx2junit-version: v2.0.3 Operating system: docker
P.S.
Tried switching to v1.6.0, this version creates xml files with correct testcase names