Each of the internal methods for reporters take a reporter, the check design object and a calling environment.
report_sleep(reporter, design, sleep)# S3 method for default
report_sleep(reporter, design, sleep = 1)
report_initialize(reporter, design, envir = parent.frame())
report_status(reporter, design, envir = parent.frame())
report_finalize(reporter, design)
A object produced using reporters
. Each reporter is a
thin wrapper around an environment with a class name for dispatch. The
reporter is mutable and captures any necessary state that needs to be
tracked while reporting.
check_design
The check design to report as it evaluates.
numeric
An interval to pause between reporter steps.
environment
An environment to attach to, to leverage on-exit
hooks.