Is it possible to get the results of a test (i.e. whether all assertions have passed) in a tearDown() method? I'm running Selenium scripts, and I'd like to do some reporting from inside tearDown(), however I don't know if this is possible.
|
|
CAVEAT: I have no way of double checking the following theory at the moment, being away from a dev box. So this may be a shot in the dark. Perhaps you could check the return value of See sys.exc_info documentation. Another more explicit approach is to write a method decorator that you could slap onto all your test case methods that require this special handling. This decorator can intercept assertion exceptions and based on that modify some state in
|
|||||||
|
|
If you take a look at the implementation of So there isn't much you can do in the
|
||||
|
|