nunit.testlogger icon indicating copy to clipboard operation
nunit.testlogger copied to clipboard

NUnit logger for vstest platform

Results 10 nunit.testlogger issues
Sort by recently updated
recently updated
newest added

Hey Team, Is there a way for failed tests, we can append the screenshot paths to the report so that any reporting dashboards can pick them up ? Regards Bheem

Hello, Inside my code I am adding an attachment: `TestContext.AddTestAttachment("TestResults1.txt", "Test Output1");` Then running test with dotnet vstest and specifying this logger with: /logger:"nunit;LogFilePath=LoginTest_TestResult.xml" After test is finished, in LoginTest_TestResult.xml...

enhancement

I was wondering if it would be possible to create a test logger that you can use to humanise the test names using something like Humanizer? Was thinking something like...

The following log messages are produced: ``` 2021-11-22T23:55:39.7872697Z Xml Logger: Unable to parse the test name 'NetworkPrimitives.Tests.Common.CharExtensionTests.TestIsHex('"',False)' into a namespace type and method. Using Namespace='UnknownNamespace', Type='UnknownType' and Method='NetworkPrimitives.Tests.Common.CharExtensionTests.TestIsHex('"',False)' 2021-11-22T23:55:39.7882339Z Xml...

The generated results file does not have `` declaration and the `` element.

In reference to the #79 & #69, As suggested, I added -- NUnit.ShowInternalProperties=true and indeed that did work. Although not completely as expected. In the result file, we now have...

Although the Specflow tests that I run on .NET Core 3.1 using command "dotnet test --logger:nunit" all pass, the tests are displayed as "inconclusive" on the HTML reports produced by...

If a theory is created with inline, or other data sources, shows in the report with the method name only. As such it is impossible to determine the scenarios that...

There are two issues with the names of test result files: 1. If not `LogFileName` parameter is specified as in `--logger=nunit` then default file name will be "TestResults.xml", while for...

I use the nunit spekt logger to generate a report on my unit tests. In order to read this report, I use the `XmlSerilizer`'s deserialization capabilities in C#. Unfortunately, the...