What is the best way to keep up with software flow?

4

I have a great project, how do I track the flow (step by step)?

I have several classes and I have no idea what methods are called, what classes are, and so on. I put a breakpoint at a point that I know goes through there in debug mode but then it passes the point and continues the flow normally.

    
asked by anonymous 09.03.2015 / 15:28

1 answer

2

You can use the JUnit framework . Its purpose is to facilitate the creation of code for the automation of tests with presentation of the results. It can be checked whether each method of a class works as expected, displaying possible errors or faults, and can be used for both test and extension drills.

    
09.03.2015 / 16:13