visual studio - How do I see output from UnitTests in VS2013? -
i'm using xunit, , in both visual studio test explorer window , resharper unit test runner window, i'm no longer seeing "output" hyperlink show contents of writeline
commands.
is there setting in ide need change?
this change in xunit2. no longer captures output console.writeline
, etc. because runs tests in parallel, in multiple threads, , there's no way of knowing test output comes from. still possible capture output, need use xunit's itestoutputhelper
in order so. see xunit docs more details.
Comments
Post a Comment