I'm a big fan of assertions. I use them very often in my code as safeguards. I was very pleased when true, native assertions were introduced to Java: they allow adding more tests while keeping the code running faster when disabled.
If you like assertions, you will appreciate the following tip. A failed assertion will throw a java.lang.AssertionError runtime exception. Logging the assertion failures is up to the application code. If your code does not report this error properly, you may completely miss the assertion failures.
Eclipse has a very useful mechanism for breaking on Exceptions. It's a different kind of breakpoint, which is triggered when the exception is thrown, regardless of how (and if) it is caught. If you are using assertions, I highly recommend setting a breakpoint on assertion failures when debugging your code. Here's how:
- From the Run menu, select Add Java Exception Breakpoint...
- Type java.lang.AssertionError in the dialog box, select the exception and click OK.
That's it, you are done. From now on, the debugger will stop whenever an exception is throw. The breakpoint will appear in the breakpoints view. You can right click it and select Breakpoint Properties... to see all the settings you can control.
Needless to say, the exception breakpoints can be used for any kind of exception. Truly a hidden treasure worth adding to your toolbox. From http://blog.zvikico.com








Comments
Mladen Girazovski replied on Thu, 2009/05/07 - 6:09am
Could you please give an example of the usage of assert that doesn't violate the rules in your first link?
Zviki Cohen replied on Thu, 2009/05/07 - 8:57am
Using assertions to validate input is a common practice. The first bullet says that you shouldn't use them for public methods - since checking the arguments is not a debug-only logic. You can use it for your own internal methods (private methods).
Michael Lockhart replied on Mon, 2009/05/11 - 5:06pm
Awesome tip Zviki! I'm actually motivated to try out assertions now, thanks.
So that the NetBeans crowd don't miss out: from the Debug menu, choose New Breakpoint. Select the Java Debugger and in the Breakpoint Type, choose Exception. NetBeans offers similar breakpoint options to Eclipse, and you can also filter on the throwing class.
Mike P(Okidoky) replied on Mon, 2009/05/11 - 6:23pm
Assertions are great. I also use them for logging. A startup configuration file would determine which packages get assertions enabled.
assert Log.println("hello " + heavyMethod());
With assertions off for this class, it'll bypass the heavyMethod() call.