Is that any library that aids in implementing design by contract principle in c++ application. EDIT:
Looking for much better than ASSERT something like this
|
3
|
Is that any library that aids in implementing design by contract principle in c++ application. EDIT:
|
||||||||||||
|
|
|
I followed the teachings of the following articles: An exception or a bug? (Miro Samek) Simple Support for Design by Contract in C++ (Pedro Guerreiro) What I ultimately applied was very much Samek's approach. Just creating macros for REQUIRE, ENSURE, CHECK and INVARIANT (based on the existing As for libraries, I don't think that it pays to use one, because one important value of the assertion mechanism is its simplicity. For the difference between debug and production code, see When should assertions stay in production code?. |
|||
|
|
|
|
Simplest? Assert statements at the start of your function to test your requirements. Assert statements at the end of your function to test your results. Yes, it's crude, its not a big system, but its simplicity makes it versatile and portable. |
||||||||
|
|
|
Hi, Some design patterns, such as the non-virtual interface make it natural to write pre/post-conditions for a given method:
|
||
|
|
|
|
|
||
|
|