vote up 0 vote down star

I want to run a java program with some test input values and when the execution ends I want to know the complete execution trace, for each conditional statement - what path was followed. Is there anything that can help me with this?

flag

2 Answers

vote up 0 vote down

You may want to have a look at AspectJ.

You can transparently intercept and log code execution using this. I'm not sure you can intercept every (say) if() statement, but you can certainly intercept method calls etc., and you should hopefully then be able to derive the execution flow from there.

link|flag
vote up 1 vote down

Sure, just use the debugging API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.