R Under development (unstable) (2026-01-29 r89354 ucrt) -- "Unsuffered Consequences" Copyright (C) 2026 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. > #! /usr/bin/Rscript --vanilla --default-packages=utils,stats,methods,svUnit > pkg <- "sqldf" > require(svUnit) # Needed if run from R CMD BATCH Loading required package: svUnit > require(pkg, character.only = TRUE) # Needed if run from R CMD BATCH Loading required package: sqldf Loading required package: gsubfn Loading required package: proto Loading required package: RSQLite > # unlink("mypkgTest.txt") # Make sure we generate a new report > mypkgSuite <- svSuiteList(pkg, excludeList = NULL) # List all our test suites > runTest(mypkgSuite, name = "svUnit") # Run them... using driver: sqlite > # protocol(Log(), type = "text", file = "mypkgTest.txt") # ... and write report > Log() = A svUnit test suite run in less than 0.1 sec with: * test.all ... OK == test.all (in runit.all.R) run in less than 0.1 sec: OK //Pass: 28 Fail: 0 Errors: 0// > > > proc.time() user system elapsed 0.93 0.21 1.17