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. 

-- 
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 visit 
https://groups.google.com/d/msgid/jacoco/4579b59c-c4fa-4ee6-b1aa-0f4d6c30893cn%40googlegroups.com.

Reply via email to