show/hide this revision's text 2 wrong example

Assertions are invaluable while refactoring I think. If you want to replace alogrihm1() with algorithm2(), you could have them both and assert on the results being equal. You can then gradually phase out the algorithm1()

Asserts are also good for some changes that you might make quickly, but are not too sure of in the context of the state of the system. Setting up asserts for the assumptions you make, would quickly help you to point out the problem, if any.

It is debatable whether asserts should be stripped via using macros or the like in release, but that's what has been done in the projects I have worked on so far.

Typically, you would have a very high level try catch block which would catch the exceptions which otherwise might have asserted in debug. e.g:

DEBUGASSERT(window !=0);
window->hide(); // exception if window is zero. Would be caught via the high level catch..

show/hide this revision's text 1

Assertions are invaluable while refactoring I think. If you want to replace alogrihm1() with algorithm2(), you could have them both and assert on the results being equal. You can then gradually phase out the algorithm1()

Asserts are also good for some changes that you might make quickly, but are not too sure of in the context of the state of the system. Setting up asserts for the assumptions you make, would quickly help you to point out the problem, if any.

It is debatable whether asserts should be stripped via using macros or the like in release, but that's what has been done in the projects I have worked on so far.

Typically, you would have a very high level try catch block which would catch the exceptions which otherwise might have asserted in debug. e.g:

DEBUGASSERT(window !=0);
window->hide(); // exception if window is zero. Would be caught via the high level catch..