testthat (version 2.2.1)

Reporter: Manage test reporting

Description

The job of a reporter is to aggregate the results from files, tests, and expectations and display them in an informative way. Every testtthat function that runs multiple tests provides a reporter argument which you can use to override the default (which is selected by default_reporter()). Typically this will

Usage

Reporter

Arguments

Format

An object of class R6ClassGenerator of length 24.

Details

You only need to use this Reporter object directly if you are creating a new reporter. Currently, creating new Reporters is undocumented, so if you want to create your own, you'll need to make sure that you're familiar with R6 and then need read the source code for a few.

See Also

Other reporters: CheckReporter, DebugReporter, FailReporter, ListReporter, LocationReporter, MinimalReporter, MultiReporter, ProgressReporter, RstudioReporter, SilentReporter, StopReporter, SummaryReporter, TapReporter, TeamcityReporter

Examples

Run this code
# NOT RUN {
path <- testthat_example("success")

# The default reporter - doesn't display well in examples because
# it's designed to work in an interactive console.
test_file(path)

# Override the default by supplying the name of a reporter
test_file(path, reporter = "minimal")
# }

Run the code above in your browser using DataLab