Hi,
I'm using SUnit in VisualWorks !
I'm doing lots of tests and I would like to build a text file resuming results of my tests.
For instance, for the test :
test1: a param: b
self assert: [a = 4].
self assert: [b = 5].
I would like to build a file such as (if I launch the test with parameters a=4 & b=4) :
TestName Result ifKO-Step
--------------------------------------
test 1 KO self assert: [b = 5].
In fact, I need to get the "step" where my test crashed.
Do you know how I can do that ?
Thanks !
Sébastien