Reports some summary statistics from the results of a run of fuzz.
Usage
# S3 method for cbtf
summary(object, tabulate = TRUE, ...)
Value
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.
Arguments
object
An object of class cbtf.
tabulate
Whether a tabulation of results should be printed out
(TRUE by default). The tabulation can always be retrieved from
the "summary_table" attribute of the returned object also when
tabulate = FALSE.
...
Further arguments passed to or from other methods.
These are currently ignored.