Calculate the test coverage by unit tests for the module and its functions.
moduleCoverage(mod, modulePath = "..")
Return a list of two coverage objects and two data.table objects.
The two coverage objects are named moduleCoverage
and functionCoverage
.
The moduleCoverage
object contains the percent value of unit test coverage
for the module.
The functionCoverage
object contains percentage values for unit test
coverage for each function defined in the module.
Please use covr::report()
to view the coverage information.
Two data.tables give the information of all the tested and untested functions
in the module.
Character string. The module's name. Default is basename(getwd())
Character string. The path to the module directory (default is "..", i.e., one level up from working directory).
Yong Luo
newModule()
.