summary.cbtf | R Documentation |
Reports some summary statistics from the results of a run of fuzz.
## S3 method for class 'cbtf'
summary(object, tabulate = TRUE, ...)
object |
An object of class |
tabulate |
Whether a tabulation of results should be printed out
( |
... |
Further arguments passed to or from other methods. These are currently ignored. |
A data frame containing the following columns and attributes is returned invisibly:
fun |
The names of the function tested. |
what |
The inputs tested. |
res |
One of "OK", "FAIL", "WARN" or "SKIP" for each combination of function and input tested (see the Value section in fuzz). |
msg |
The message received in case of error, warning or skip, or an empty string if no failure occurred. |
attr(* , "summary_table") |
The tabulation of results that was printed out. |
print.cbtf
res <- fuzz(funs = c("list", "matrix", "mean"),
what = test_inputs(c("numeric", "raw")))
summary(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.