I have my existing framework built up using Jfunc which provides a facility to continue exection even when one of the asserts in the test case fails. Jfunc uses junit 3.x f
Use try/finally blocks. This worked in my case:
... try { assert(...) } finally { // code to be executed after assert } ...