Search Results

0
votes

design by contract tests by assert or by exception?

You should use both. Asserts are for your convenience as a developer. Exceptions catch things you missed or didn't expect during runtime. I've grown fond of …
0
votes

How can I assert() without using abort()?

glib's error reporting functions …