spekt / junit.testlogger

JUnit test logger for vstest platform (<= v3.x)
MIT License
77 stars 15 forks source link

No test result file when outputing an escape sequence #62

Closed jairbubbles closed 1 year ago

jairbubbles commented 1 year ago

While investigating why my test result was not created for my projects, I realized that it was due to some tests that were outputting escape sequences.

To reproduce the issue, you can just use this test:

[Test]
public void Test()
{
    Console.WriteLine("test\0");
}
Siphonophora commented 1 year ago

Duplicate of #59