junit-quickcheck
junit-quickcheck copied to clipboard
Low performance when using nested list
When Pojo1
contains a List<Pojo2>
that contains a List<Pojo3>
, test time goes through the roof.
com.pholser.junit.quickcheck.internal.Reflection
methods are not cached and most of the time is spent there
@Decat-SimonA Thanks for this. Perhaps I can spent some time to cache the results of reflective operations.