| test_dir {testthat} | R Documentation |
Run all tests in a directory
Description
This function is the low-level workhorse that powers test_local() and
test_package(). Generally, you should not call this function directly.
In particular, you are responsible for ensuring that the functions to test
are available in the test env (e.g. via load_package).
Usage
test_dir(
path,
filter = NULL,
reporter = NULL,
env = NULL,
...,
load_helpers = TRUE,
stop_on_failure = TRUE,
stop_on_warning = FALSE,
wrap = lifecycle::deprecated(),
package = NULL,
load_package = c("none", "installed", "source")
)
Arguments
path |
Path to directory containing tests. |
filter |
If not |
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. |
env |
Environment in which to execute the tests. Expert use only. |
... |
Additional arguments passed to |
load_helpers |
Source helper files before running the tests?
See |
stop_on_failure |
If |
stop_on_warning |
If |
wrap |
DEPRECATED |
package |
If these tests belong to a package, the name of the package. |
load_package |
Strategy to use for load package code:
|
Value
A list (invisibly) containing data about the test results.
Special files
There are two types of .R file that have special behaviour:
Test files start with
testand are executed in alphabetical order.Setup files start with
setupand are executed before tests. If clean up is needed after all tests have been run, you can usewithr::defer(clean_up(), teardown_env()). Seevignette("test-fixtures")for more details.
There are two other types of special file that we no longer recommend using:
Helper files start with
helperand are executed before tests are run. They're also loaded bydevtools::load_all(), so there's no real point to them and you should just put your helper code inR/.Teardown files start with
teardownand are executed after the tests are run. Now we recommend interleave setup and cleanup code insetup-files, making it easier to check that you automatically clean up every mess that you make.
All other files are ignored by testthat.
Environments
Each test is run in a clean environment to keep tests as isolated as possible. For package tests, that environment that inherits from the package's namespace environment, so that tests can access internal functions and objects.