What package needs to be imported to enable statis...
# kotest
n
What package needs to be imported to enable statistics collection in Kotest like so?
Copy code
checkAll(Arb.enum<RoundingMode>(), Arb.bigDecimal()) { mode, decimal ->
  collect(mode)
  // test here
}