inst/tests/all.R

#!/usr/bin/env Rscript
# vim:set ff=unix expandtab ts=2 sw=2:
require("RUnit")
require("SoilR")
require("deSolve")
#require("debugHelpers")
source("testhelpers.R")
dataPrefix="../../data/"
dataPaths=Sys.glob(paste(dataPrefix,"*.rda",sep=""))
for (dfile in dataPaths){
  load(dfile)
}
package_tests <- defineTestSuite(
   name="package_Tests",
   dirs=c("protected","requireSoilR"),
   testFileRegexp = "^runit.+\\.[rR]",
   testFuncRegexp = "^test.+",
   rngKind = "Marsaglia-Multicarry",
   rngNormalKind = "Kinderman-Ramage"
)

#testResult <- runTestSuite(testSuites=list(source_tests,package_tests))
testResult <- runTestSuite(testSuites=list(package_tests))
printTextProtocol(testResult)

#produce exitstatus ne 0 for buildbot to notice
ef=getErrors(testResult)
n=ef$nErr+ef$nFail
if (n>0) {stop(1)}

Try the SoilR package in your browser

Any scripts or data that you put into this service are public.

SoilR documentation built on Oct. 13, 2023, 5:06 p.m.