get_reporter()
and set_reporter()
access and modify the current "active"
reporter. Generally, these functions should not be called directly; instead
use with_reporter()
to temporarily change, then reset, the active reporter.
Usage
set_reporter(reporter)
get_reporter()
with_reporter(reporter, code, start_end_reporter = TRUE)
Arguments
- reporter
Reporter to use to summarise output. Can be supplied as a string (e.g. "summary") or as an R6 object (e.g.
SummaryReporter$new()
).See Reporter for more details and a list of built-in reporters.
- code
Code to execute.
- start_end_reporter
Should the reporters
start_reporter()
andend_reporter()
methods be called? For expert use only.