gitextract_nxw_371p/ ├── .Rbuildignore ├── .gitattributes ├── .github/ │ ├── .gitignore │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .lintr ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── R6.R │ ├── RC.R │ ├── S4.R │ ├── S7.R │ ├── azure.R │ ├── box.R │ ├── cobertura.R │ ├── codecov.R │ ├── compiled.R │ ├── coveralls.R │ ├── covr.R │ ├── data_frame.R │ ├── display_name.R │ ├── exclusions.R │ ├── gitlab.R │ ├── icc.R │ ├── parallel.R │ ├── parse_data.R │ ├── replace.R │ ├── report.R │ ├── sonarqube.R │ ├── summary_functions.R │ ├── system.R │ ├── trace_calls.R │ ├── trace_tests.R │ ├── utils.R │ ├── value.R │ ├── vectorized.R │ └── zzz.R ├── README.md ├── SECURITY.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── docker_checker/ │ └── Dockerfile ├── inst/ │ ├── rstudio/ │ │ └── addins.dcf │ └── www/ │ ├── report.css │ └── shared/ │ └── highlight.js/ │ ├── LICENSE │ ├── highlight.pack.js │ └── rstudio.css ├── man/ │ ├── as_coverage.Rd │ ├── as_coverage_with_tests.Rd │ ├── azure.Rd │ ├── clear_counters.Rd │ ├── code_coverage.Rd │ ├── codecov.Rd │ ├── count.Rd │ ├── count_test.Rd │ ├── coverage_to_list.Rd │ ├── coveralls.Rd │ ├── covr-package.Rd │ ├── covr.record_tests.Rd │ ├── current_test_call_count.Rd │ ├── current_test_index.Rd │ ├── current_test_key.Rd │ ├── display_name.Rd │ ├── environment_coverage.Rd │ ├── exclusions.Rd │ ├── file_coverage.Rd │ ├── file_report.Rd │ ├── function_coverage.Rd │ ├── gitlab.Rd │ ├── has_srcref.Rd │ ├── in_covr.Rd │ ├── is_covr_count_call.Rd │ ├── is_current_test_finished.Rd │ ├── key.Rd │ ├── new_counter.Rd │ ├── new_test_counter.Rd │ ├── package_coverage.Rd │ ├── percent_coverage.Rd │ ├── print.coverage.Rd │ ├── report.Rd │ ├── system_check.Rd │ ├── system_output.Rd │ ├── tally_coverage.Rd │ ├── to_cobertura.Rd │ ├── to_sonarqube.Rd │ ├── trace_calls.Rd │ ├── truncate_call.Rd │ ├── update_current_test.Rd │ ├── value.Rd │ └── zero_coverage.Rd ├── shim_package.sh ├── src/ │ └── reassign.c ├── tests/ │ ├── testthat/ │ │ ├── Test+Char/ │ │ │ └── TestCompiled/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestCompiled.R │ │ │ ├── man/ │ │ │ │ └── simple.Rd │ │ │ ├── src/ │ │ │ │ └── simple.cc │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestCompiled.R │ │ │ └── testthat.R │ │ ├── TestCompiled/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestCompiled.R │ │ │ ├── man/ │ │ │ │ └── simple.Rd │ │ │ ├── src/ │ │ │ │ ├── simple-header.h │ │ │ │ ├── simple.cc │ │ │ │ └── simple4.cc │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestCompiled.R │ │ │ └── testthat.R │ │ ├── TestCompiledSubdir/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestCompiledSubdir.R │ │ │ ├── man/ │ │ │ │ └── simple.Rd │ │ │ ├── src/ │ │ │ │ ├── Makevars │ │ │ │ └── lib/ │ │ │ │ └── simple.c │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestCompiledSubdir.R │ │ │ └── testthat.R │ │ ├── TestExclusion/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestExclusion.R │ │ │ ├── man/ │ │ │ │ └── test_me.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestExclusion.R │ │ │ └── testthat.R │ │ ├── TestFunctional/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── a.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-a.R │ │ │ └── testthat.R │ │ ├── TestNestedTestDirs/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── a.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ ├── nested_tests/ │ │ │ │ │ └── test-a.R │ │ │ │ ├── test-a.R │ │ │ │ └── test-nested-dir.R │ │ │ └── testthat.R │ │ ├── TestParallel/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestParallel.R │ │ │ ├── man/ │ │ │ │ └── test_me.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestParallel.R │ │ │ └── testthat.R │ │ ├── TestPrint/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestPrint.R │ │ │ ├── man/ │ │ │ │ └── test_me.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestSummary.R │ │ │ └── testthat.R │ │ ├── TestR6/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestR6.R │ │ │ ├── man/ │ │ │ │ └── a.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestR6.R │ │ │ └── testthat.R │ │ ├── TestRC/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestRC.R │ │ │ ├── man/ │ │ │ │ └── a.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestRC.R │ │ │ └── testthat.R │ │ ├── TestS4/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestS4.R │ │ │ ├── codecov.yml │ │ │ ├── man/ │ │ │ │ └── a.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestS4.R │ │ │ └── testthat.R │ │ ├── TestS7/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── foo.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-foo.R │ │ │ └── testthat.R │ │ ├── TestSummary/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── TestSummary.R │ │ │ ├── man/ │ │ │ │ └── test_me.Rd │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-TestSummary.R │ │ │ └── testthat.R │ │ ├── TestUseTry/ │ │ │ ├── DESCRIPTION │ │ │ ├── NAMESPACE │ │ │ ├── R/ │ │ │ │ └── notry.R │ │ │ └── tests/ │ │ │ ├── tests.R │ │ │ └── testthat/ │ │ │ └── test-notry.R │ │ ├── Testbox/ │ │ │ ├── app/ │ │ │ │ ├── app.R │ │ │ │ └── modules/ │ │ │ │ └── module.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-module.R │ │ │ └── testthat.R │ │ ├── Testbox_R6/ │ │ │ ├── app/ │ │ │ │ ├── app.R │ │ │ │ └── modules/ │ │ │ │ └── moduleR6.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-moduleR6.R │ │ │ └── testthat.R │ │ ├── Testbox_attached_modules_functions/ │ │ │ ├── app/ │ │ │ │ ├── app.R │ │ │ │ └── modules/ │ │ │ │ └── module.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ ├── test-aliased_functions.R │ │ │ │ ├── test-aliased_modules.R │ │ │ │ ├── test-attached_functions.R │ │ │ │ └── test-three_dots.R │ │ │ └── testthat.R │ │ ├── Testbox_attached_modules_functions_R6/ │ │ │ ├── app/ │ │ │ │ ├── app.R │ │ │ │ └── modules/ │ │ │ │ └── moduleR6.R │ │ │ └── tests/ │ │ │ ├── testthat/ │ │ │ │ └── test-attached_R6.R │ │ │ └── testthat.R │ │ ├── _snaps/ │ │ │ ├── Compiled.md │ │ │ └── S7.md │ │ ├── a │ │ ├── b │ │ ├── cobertura.xml │ │ ├── corner-cases-test.R │ │ ├── corner-cases.R │ │ ├── corner-cases.Rds │ │ ├── helper.R │ │ ├── sonarqube.xml │ │ ├── test-Compiled.R │ │ ├── test-R6.R │ │ ├── test-RC.R │ │ ├── test-S4.R │ │ ├── test-S7.R │ │ ├── test-azure.R │ │ ├── test-box-R6.R │ │ ├── test-box.R │ │ ├── test-box_attached_modules_functions-R6.R │ │ ├── test-box_attached_modules_functions.R │ │ ├── test-braceless.R │ │ ├── test-cobertura.R │ │ ├── test-codecov.R │ │ ├── test-corner-cases.R │ │ ├── test-coveralls.R │ │ ├── test-covr.R │ │ ├── test-exclusions.R │ │ ├── test-file_coverage.R │ │ ├── test-functions.R │ │ ├── test-gcov.R │ │ ├── test-gitlab.R │ │ ├── test-memoised.R │ │ ├── test-null.R │ │ ├── test-package_coverage.R │ │ ├── test-parallel.R │ │ ├── test-print.R │ │ ├── test-record_tests.R │ │ ├── test-report.R │ │ ├── test-report.htm │ │ ├── test-sonarqube.R │ │ ├── test-summary.R │ │ ├── test-trace_calls.R │ │ ├── test-utils.R │ │ └── test-vectorized.R │ └── testthat.R ├── unshim_package.sh └── vignettes/ └── how_it_works.Rmd