Repeatedly test properties of a function
Usage
repeat_test(property, tests = getOption("quickcheck.tests", 100L))
Examples
repeat_test(
property = function() {
num <- stats::runif(1, min = 0, max = 10)
testthat::expect_true(num >= 0 && num <= 10)
}
)