reporter-accessors {testthat} | R Documentation |
Get and set active reporter.
Description
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. See Reporter for more details and a list of built-in reporters. |
code |
Code to execute. |
start_end_reporter |
Should the reporters |
Value
with_reporter()
invisible returns the reporter active when code
was evaluated.
[Package testthat version 3.2.0 Index]