A few years ago, I did a survey of DbC packages for Java, and I wasn't wholly satisfied with any of them. Unfortunately I didn't keep good notes on my findings, and I assume things have changed. Would anybody care to compare and contrast different DbC packages for Java?
|
|
It's been a long time since I've looked at these, but found some old links. One was for JASS. The other one that I had used (and liked) was iContract by Reliable Systems. It had an ant task that you would run as a preprocessor. However, I can't seem to find it with some google searches, it looks like it has vanished. The original site is now a link farm. Check out this link for some possible ways to get to it. |
||
|
|
|
I tested contract4J one time and found it usable but not perfect. You are creating contracts for for and after method calls and invars over the whole class. The contract is created as an assertion for the method. The Problem is that the contract itself is written in a string so you don't have IDE support for the contracts or compile time cheching if the contract still works. A link to the library |
||
|
|
|
|
I think that many DbC libraries were surclassed by the builtin assert keyword, introduced since Java 1.4:
|
||||||
|
