test()
is a shortcut for testthat::test_dir()
, it runs all of a
package's tests.
test_file
runs test()
on the active file.
test_coverage()
computes test coverage for your package. It is a shortcut
for covr::package_coverage()
and covr::report()
.
test_coverage_file()
computes test coverage for the active file. Is a
shortcut for covr::file_coverage()
and covr::report()
.
1 2 3 4 5 6 7 8 9 10 | test(pkg = ".", filter = NULL, ...)
test_coverage(pkg = ".", show_report = interactive(), ...)
uses_testthat(pkg = ".")
test_file(file = find_active_file(), ...)
test_coverage_file(file = find_active_file(), filter = TRUE,
show_report = interactive(), ...)
|
pkg |
The package to use, can be a file path to the package or a
package object. See |
filter |
If not |
... |
additional arguments passed to |
show_report |
Show the test coverage report. |
file |
One or more source or test files. If a source file the corresponding test file will be run. The default is to use the active file in RStudio (if available). |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.