I'm running an Xunit test like this:
Code:
Assert.Equal("Hello world", md);
when I click on the red X, all I see is
Code:
Xunit.Sdk.EqualException: Assert.Equal() Failure
I would like to see the full message
Code:
Position: First difference is at position 0
Expected: Hello world
Actual: xyz
thanks