c# - How to hide this error on vstest.console.exe? -
i have developed unit test project , executed with
vstest.console.exe
in console want show method pass or method fail..
how hide errors , trace ...
here available command line options vstest.console.exe
, none of them need.
your best bet write custom logger implementing itestlogger
microsoft.visualstudio.testplatform.objectmodel.dll
, specifying /logger
option.
check this post more details.
Comments
Post a Comment