Hello,
I want to know if exist someway to stop JaCoCo to measure the objects generation process in parameterized property-based tests. For example, I have this code:
@Property()
public void test(@ForAll("lists") List<Integer> list) {
list.add(3);
}
I want to measure the coverage of method add of List, but the lists generated but the "lists" generator use add in its definition in order to produce serveral lists. The calls to add used in the generator are measured too. There is someway to stop the measure process of JaCoCo and make it start at the beginning of the test? And stop it again at the end of the test.
Kind regards,
Agustin.