Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unit tests for code in the /src folder of an R package?

I am contributing to an R package that makes extensive use of C code for computation.

We have started writing tests for R functions using the testthat package, placing the tests in inst/tests following instructions here.

Is the testthat package appropriate for testing C functions directly (e.g. those without R interfaces)? Or do we find a separate C testing package? If so, 1) where should these tests go, 2) how do I get them to run during R CMD check, and 3) is any C testing package particularly appropriate in this context?

like image 386
David LeBauer Avatar asked May 27 '13 19:05

David LeBauer


1 Answers

I find the question a little confused:

  • Either you consider your C code to be in support of higher-level R functions that you can test at the R (as you seem to have done)

  • Or you consider your C code to be more standalone, in which case you could use one of a bazillion unit testing frameworks for C.

Many of the packages using Rcpp also use extensive unit testing, either via RUnit, or via testthat. You could look at that. I generally test at the R function level, which often implies a test of the underlying C++ function.

like image 115
Dirk Eddelbuettel Avatar answered Oct 04 '22 19:10

Dirk Eddelbuettel