I have recently started exploring property based testing using junit-quickcheck. I came across an usecase where a property has to take a list of entities(I have a generator for a standalone entity). I have tried with the code below and it always gives an empty list.
@Property(trials = 5)
public void addingInDiffOrderResultsInSameResult(
List<@From(CusObjGen.class) CusObj> objs) {
}
Can someone show some right way here?