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");
}
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: