R Under development (unstable) (2025-06-30 r88369 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > if (requireNamespace("RUnit", quietly=TRUE) && requireNamespace("dynafluxr", quietly=TRUE)) { + testSuite <- RUnit::defineTestSuite( + name = "dynafluxr unit tests", + dirs = system.file("unitTests", package = "dynafluxr"), + testFuncRegexp = "^[Tt]est.+" + ) + Sys.setenv("R_TESTS"="") + tests <- RUnit::runTestSuite(testSuite) + + RUnit::printTextProtocol(tests) + + if (RUnit::getErrors(tests)$nFail > 0) stop("RUnit test failure") + if (RUnit::getErrors(tests)$nErr > 0) stop("Errors in RUnit tests") + } Executing test function test.cli.ex ... done successfully. RUNIT TEST PROTOCOL -- Tue Jul 1 11:07:58 2025 *********************************************** Number of test functions: 1 Number of errors: 0 Number of failures: 0 1 Test Suite : dynafluxr unit tests - 1 test function, 0 errors, 0 failures Details *************************** Test Suite: dynafluxr unit tests Test function regexp: ^[Tt]est.+ Test file regexp: ^runit.+\.[rR]$ Involved directory: D:/RCompile/CRANincoming/R-devel/lib/dynafluxr/unitTests --------------------------- Test file: D:/RCompile/CRANincoming/R-devel/lib/dynafluxr/unitTests/runit.dynafluxr.R test.cli.ex: (1 checks) ... OK (0.25 seconds) Warning messages: 1: In RNGkind(kind = testSuite$rngKind, normal.kind = testSuite$rngNormalKind) : RNGkind: Marsaglia-Multicarry has poor statistical properties 2: In RNGkind(kind = testSuite$rngKind, normal.kind = testSuite$rngNormalKind) : RNGkind: severe deviations from normality for Kinderman-Ramage + Marsaglia-Multicarry > > proc.time() user system elapsed 1.32 0.17 1.48