I had a few “alternative ways” to ignore those asserts (http://twitpic.com/qvecx) but Willy told me the correct way to do it.
All you have to do is adding the following to your .exe.config file:
<system.diagnostics> <assert assertuienabled="false"/> </system.diagnostics>
That code tells the framework that you don’t want to show a message box when a “Debug.Assert” is called, which is exactly what I wanted.
So, since my test is a msbuild script all I had to do is adding the above “code” in the msbuild.exe.config and now my tests runs smooth and the results are ready, waiting for me :)
More info on the assert tag here.
Thanks for the tip, you are a life saver ^^
ReplyDeleteThanks for the tip, you are a lifesaver ^^
ReplyDelete