This returns the total number of tests as the product of the number of inputs used and the number of functions tested.
Usage
# S3 method for class 'cbtf'
length(x)Examples
res <- fuzz(funs = c("list", "matrix", "mean"),
what = test_inputs(c("numeric", "raw")))
#> ℹ Fuzzing 3 functions with 10 inputs (using 2 daemons)
#> ℹ Functions will be searched in the global namespace as `package` was not specified
#> ℹ 30 tests run [18ms]
length(res)
#> [1] 30
