inst/tests/src/selected_corrado.R

#!/usr/bin/Rscript
# vim:set ff=unix expandtab ts=2 sw=2:
#options(warn=-1)
#source("prolog.R")
require("RUnit")
require("pkgload")
source("../testhelpers.R")
pkgload::load_all('../../../')
alltests <- defineTestSuite(
   name="selectedCorrado",
   dirs=c("."),
   testFileRegexp = "^notTested.corrado.R$",
   #testFuncRegexp ="^test.ConstLinDecompOpFromNamedFluxes$",
   #testFuncRegexp ="^test.ConstLinDecompOp$",
   #testFuncRegexp ="^test.phi_mn_with_initialValues|test.corrados_next_function",
   #testFuncRegexp ="test.corrados_next_function",
   #testFuncRegexp ="test.term1",
   #testFuncRegexp ="test.phi_mn$",
   testFuncRegexp ="test.InternalFluxe_by_PoolName$",
   rngKind = "Marsaglia-Multicarry",
   rngNormalKind = "Kinderman-Ramage"
)

#testResult <- runTestSuite(alltests,verbose=0)
testResult <- runTestSuite(alltests)
#print(testResult)
printTextProtocol(testResult)
#produce exitstatus ne 0 for buildbot to notice
ef=getErrors(testResult)
print(ef)
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.