Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 737 Bytes

File metadata and controls

20 lines (16 loc) · 737 Bytes

pkgTesteR

pkgTesteR creates a validation form for a R package stored in a git repository.

For example, to create the validation form for the clinUtils R package:

  1. Clone the git repository of the package available at: https://github.com/openanalytics/clinUtils.git
  2. Make sure to pull the tags containing the different versions of the package: git pull tags
  3. Create a validation form highlighting tests which are new since v0.0.4:
pkgTesteR::exportUnitTestsToForm(
    package = "clinUtils", 
    packageGitPath = "~/git/clinUtils",
    packageVersionBase = "0.0.4",
    riskLevel = "medium",
    testInfoExport = TRUE
)

See more examples and explanations on the process in ? pkgTesteR::exportUnitTestsToForm.