Hello! I'm trying to get some information about a coverage run. I have statements probes array (ExecutionData), which I collect using an ExecutionDataVisitor, collecting statements probes array for each test run (using a custom JUnit listener).
Now I need to figure out which method/branch from each executed class have been executed. I managed to retrieve numbers about covered methods/branches/statements by analyzing the ExecutionData using a CoverageBuilder. I found also that I can check the name of each method executed and with this I can generate my own list of which of all methods have been executed. Now I need to do the same with branches, but I didn't figure any way to do this. The ideal would be an array containing all possible executable branches and those that were executed, marked with a flag (same mechanism as ExecutionData). Anyone can provide me some light? Thanks in advance! -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/ef2d9ada-fab4-425c-ac4e-354c573481eb%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
