cpp

Testing C++ Code in R Packages

When you write a package in R, you probably write tests. A popular package for unit tests with R is testthat,1 with the final invocation: devtools::test() If your package also includes native code, let’s say, C++, you can test it by testing the R API that exercises the native functions.