I don't see much of the developer using Java Assert, but I am very keen in using them. Could you share some tips to effectively use them?
|
feedback
|
|
I use
For full-blown support in Java, maybe consider using a third-party library (from Wikipedia):
| |||
|
feedback
|
|
Since your question is tagged "java" and "design-by-contract" and does not mention JML, I thought I would post a link: http://www.eecs.ucf.edu/~leavens/JML/ JML is an annotation language for writing contracts in Java. The contracts can be checked by run-time assertions or verified statically. By digging a little in what has been done in the JML community, you can find plenty of good principles and ideas for design-by-contract in Java and in other languages. JML has inspired similar annotation languages for other languages, such as Spec# (for .NET) and ACSL (for C). | |||
|
feedback
|
|
This has been inherited from the C world, but has not caught on due to the more systematic approach given by e.g. jUnit where you have independent test suites instead which can be run at will. I would recommend you look into Test Driven Development using e.g. junit before investigating too much time in | |||||||||||||
feedback
|
|
I personally use asserts for all non-recoverable morbid scenarios - which is what they are intended for. This means I assert only the most critical parts of an application's logic. Asserts, of course, are enabled only in development and testing. We don't want to burden the production code with them and it's assumed that we properly tested everything so the user will never get into such a critical scenario. | ||||
feedback
|