test_coverage {testthis} | R Documentation |
Test coverage of package
Description
This determines the test coverage of the target package based on the desc
argument of test_that()
calls. If you require a more comprehensive analysis
of test coverage, try the package covr instead.
Usage
test_coverage(from_tags = TRUE, from_desc = TRUE)
Arguments
from_tags |
|
from_desc |
|
Details
test_coverage
looks in .covrignore
for functions that should be ignored
for coverage analysis (see usethis::use_covr_ignore()
)
Value
A Test_coverage
object. This is a data.frame
containing the
following columns:
fun: Name of the function
exp: Is function is exported?
s3: Is function an S3 method?
tested: Do unit tests exist for function?
ignore: Is function listed in ‘tests/testthat/_testignore’?
Examples
## Not run:
x <- test_coverage()
as.data.frame(x)
## End(Not run)