junit.testlogger
junit.testlogger copied to clipboard
JUnit test logger for vstest platform
Forgive me if I've missed a configuration option for this, but I can't see any code to handle attachments so think I'm accurate. I'm using MSTest and making use of...
Following #34 verify if this is an issue for gitlab. Tidy up the docs if needed, remove the test adapter cli option which isn't needed. Update the example on gitlab
We are looking for help adding platform specific recommendations (if any), screenshots, and examples for Jenkins which are similar to those here. https://github.com/spekt/junit.testlogger/blob/master/docs/gitlab-recommendation.md
We are looking for help adding platform specific recommendations (if any), screenshots, and examples for CircleCI which are similar to those here. https://github.com/spekt/junit.testlogger/blob/master/docs/gitlab-recommendation.md
Thoughts from #22 and #23 1. The logger isn't built to support parallel test runs. 1. Instance members that store test output need to be re-thought, or at least locking...
Can someone add a CONTRIBUTING.md to this project to clarify how to contribute to this project? I can't tell for instance if I need to sign a CLA (I'm fairly...
After I integrated the library, I noticed the following oddities: I get only 2 tests displayed instead of 13. If I use the default `--logger "trx;LogFileName=testreport.trx" statement and convert the...
Would be a nice way to ~dogfood~ validate the junit logger on itself! :)
I'm running tests on an entire solution, as documented here: https://devblogs.microsoft.com/dotnet/whats-new-in-our-code-coverage-tooling/ My command line looks like: ```bash dotnet test --settings CodeCoverage.runsettings --collect "Code Coverage;Format=cobertura" --logger:"junit;LogFilePath=..\reports\unit-tests\;LogFileName={assembly}.test-result.xml;MethodFormat=Class;FailureBodyFormat=Verbose" --results-directory ./TestResults ``` I have...
I'm using googletest within my c++ project, where parameterized tests have names of the form ```${TestCaseName}/${TestClassName}.${TestMethodName}/${TestNumber} [${TestParameters}...] ``` junit.testlogger apparently fails to parse those kind of test names: > Test...