Debug.Assert vs. Specific Thrown Exceptions - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T11:58:24Z http://stackoverflow.com/feeds/question/61219 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions 9 Debug.Assert vs. Specific Thrown Exceptions Nij 2008-09-14T09:19:44Z 2009-09-02T09:51:30Z <p>Hi,</p> <p>I've just started skimming 'Debugging MS .Net 2.0 Applications' by John Robbins, and have become confused by his evangelism for Debug.Assert(...).</p> <p>He points out that well-implemented Asserts store the state, somewhat, of an error condition, e.g.:</p> <pre><code>Debug.Assert(i &gt; 3, "i &gt; 3", "This means I got a bad parameter"); </code></pre> <p>Now, personally, it seems crazy to me that he so loves restating his test without an actual sensible 'business logic' comment, perhaps "i &lt;= 3 must never happen because of the flobittyjam widgitification process".</p> <p>So, I think I get Asserts as a kind-of low-level "Let's protect my assumptions" kind of thing... assuming that one feels this is a test one only needs to do in debug - i.e. you are protecting yourself against colleague and future programmers, and hoping that they actually test things.</p> <p>But what I don't get is, he then goes on to say that you should use assertions in addition to normal error handling; now what I envisage is something like this:</p> <pre><code>Debug.Assert(i &gt; 3, "i must be greater than 3 because of the flibbity widgit status"); if (i &lt;= 3) { throw new ArgumentOutOfRangeException("i", "i must be &gt; 3 because... i=" + i.ToString()); } </code></pre> <p>What have I gained by the Debug.Assert repetition of the error condition test? I think I'd get it if we were talking about debug-only double-checking of a very important calculation...</p> <pre><code>double interestAmount = loan.GetInterest(); Debug.Assert(debugInterestDoubleCheck(loan) == interestAmount, "Mismatch on interest calc"); </code></pre> <p>...but I don't get it for parameter tests which are surely worth checking (in both DEBUG and Release builds)... or not. What am I missing?</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61223#61223 1 Answer by aku for Debug.Assert vs. Specific Thrown Exceptions aku 2008-09-14T09:25:40Z 2008-09-14T09:32:06Z <p>IMO it's a loss of development time only. Properly implemented exception gives you a clear picture of what happened. I saw <em>too much</em> applications showing obscure "Assertion failed: i &lt; 10" errors. I see assertion as a temporary solution. In my opinion no assertions should be in a final version of a program. In my practice I used assertions for quick and dirty checks. Final version of the code should take erroneous situation into account and behave accordingly. If something bad happens you have 2 choices: handle it or leave it. Function should throw an exception with meaningful description if wrong parameters passed in. I see no points in duplication of validation logic.</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61225#61225 16 Answer by Chris Jester-Young for Debug.Assert vs. Specific Thrown Exceptions Chris Jester-Young 2008-09-14T09:26:56Z 2008-09-14T09:26:56Z <p>Assertions are not for parameter checking. Parameter checking should always be done (and precisely according to what pre-conditions are specified in your documentation and/or specification), and the <code>ArgumentOutOfRangeException</code> thrown as necessary.</p> <p>Assertions are for testing for "impossible" situations, i.e., things that you (in your program logic) <em>assume</em> are true. The assertions are there to tell you if these assumptions are broken for any reason.</p> <p>Hope this helps!</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61237#61237 2 Answer by Simon Johnson for Debug.Assert vs. Specific Thrown Exceptions Simon Johnson 2008-09-14T09:55:08Z 2008-09-14T09:55:08Z <p>I use explicit checks that throw exceptions on <em>public</em> and <em>protected</em> methods and assertions on private methods.</p> <p>Usually, the explicit checks guard the private methods from seeing incorrect values anyway. So really, the assert is checking for a condition that should be impossible. If an assert does fire, it tells me the there is a defect in the validation logic contained within one of the public routines on the class.</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61254#61254 -1 Answer by Nij for Debug.Assert vs. Specific Thrown Exceptions Nij 2008-09-14T10:39:54Z 2008-09-14T10:39:54Z <p>Thansk to all for your thoughts - it seems like I wasn't missing anything, and the feedback (at least so far) suggests that the book I'm reading may be offering some unusual guidance. Maybe it's even wrong ;)</p> <p>@<a href="#61237" rel="nofollow">Simon </a>- I believe I understand your distinction, but would guess that the <em>intention</em> behind what you're saying is the undelying assumption that you have tested your 'user' input in a public method... I'm looking at a routine right now where the inputs are passed to a private method to be parsed. In other words, dangerous values could still exist in private calls. (depending on so many factors etc etc).</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61266#61266 6 Answer by hwiechers for Debug.Assert vs. Specific Thrown Exceptions hwiechers 2008-09-14T10:57:27Z 2008-09-14T10:57:27Z <p>There is a communication aspect to asserts vs exception throwing.</p> <p>Let's say we have a User class with a Name property and a ToString method.</p> <p>If ToString is implemented like this:</p> <pre><code>public string ToString() { Debug.Assert(Name != null); return Name; } </code></pre> <p>It says that Name should never null and there is a bug in the User class if it is.</p> <p>If ToString is implement like this:</p> <pre><code>public string ToString() { if ( Name == null ) { throw new InvalidOperationException("Name is null"); } return Name; } </code></pre> <p>It says that the caller is using ToString incorrectly if Name is null and should check that before calling.</p> <p>The implementation with both</p> <pre><code>public string ToString() { Debug.Assert(Name != null); if ( Name == null ) { throw new InvalidOperationException("Name is null"); } return Name; } </code></pre> <p>says that if Name is null there bug in the User class, but we want to handle it anyway. (The user doesn't need to check Name before calling.) I think this is the kind of safety Robbins was recommending.</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61337#61337 -1 Answer by Nij for Debug.Assert vs. Specific Thrown Exceptions Nij 2008-09-14T13:43:17Z 2008-09-14T13:43:17Z <p>@<a href="#61266" rel="nofollow">hwiechers</a>: I take your point re: different <em>implied</em> meanings to the two forms of raising the issue, however I would argue that the wish to handle the error trumps the flagging of an internal inconsistency, and that only one need be applied.</p> <p>Additionally, say the issue ever does come up from live, reproducing the error in test now results in a <strong>different</strong> error response, not the same one as live, which could in turn lead to confusion... though granted probably much less than if <em>no</em> checks had been applied ;)</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/61678#61678 2 Answer by Steve Steiner for Debug.Assert vs. Specific Thrown Exceptions Steve Steiner 2008-09-14T21:59:11Z 2008-09-14T21:59:11Z <p>An exception can be caught and swallowed making the error invisible to testing. That can't happen with Debug.Assert. </p> <p>No one should ever have a catch handler that catches all exceptions, but people do it anyway, and sometimes it is unavoidable. If your code is invoked from COM, the interop layer catches all exceptions and turns them into COM error codes, meaning you won't see your unhandled exceptions. Asserts don't suffer from this.</p> <p>Also when the exception would be unhandled, a still better practice is to take a mini-dump. One area where VB is more powerful than C# is that you can use an exception filter to snap a mini-dump when the exception is in flight, and leave the rest of the exception handling unchanged. <a href="http://blogs.msdn.com/greggm/archive/2008/04/21/exception-filter-inject.aspx" rel="nofollow">Gregg Miskelly's blog post on exception filter inject</a> provides a useful way to do this from c#. </p> <p>One other note on assets ... they inteact poorly with Unit testing the error conditions in your code. It is worthwhile to have a wrapper to turn off the assert for your unit tests.</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/88293#88293 -1 Answer by Nij for Debug.Assert vs. Specific Thrown Exceptions Nij 2008-09-17T22:21:39Z 2008-09-17T22:21:39Z <p>Thanks for your input Steve,</p> <p>Your comments were thought-provoking - especially in relation to Asserts not being caught by overzealous catch statements. The link provided is a bit beyond me right now - but hopefully I'll be able to start learning WinDbg and SOS in the near future... my PC crashed with a BSOD as I was writing my first resonse here... so I have other things to worry about right now ;)</p> http://stackoverflow.com/questions/61219/debug-assert-vs-specific-thrown-exceptions/1366769#1366769 0 Answer by Weifen Luo for Debug.Assert vs. Specific Thrown Exceptions Weifen Luo 2009-09-02T09:51:30Z 2009-09-02T09:51:30Z <p>Check this out: <a href="http://www.devzest.com/blog/post/DebugAssert-vs-Exception.aspx" rel="nofollow">http://www.devzest.com/blog/post/DebugAssert-vs-Exception.aspx</a></p>