Hi,
I have a class that has methods in my test class
setup
test_add
test_delete
teardown
the call sequence is
1. setup , test_add , teardown
2. setup , test_delete , teardown.
I wanna know how to find inside the setup() method which method was called last and which method will be called next. I wanna do it to prepare diff set of data in setup() method
for different test methods.
Please suggest solutions and pointers.
regards
anubhav