R Under development (unstable) (2025-08-19 r88650 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. > pkgname = "asteRisk" > library(pkgname, character.only = TRUE, quietly = TRUE) To use all functionalities available in this package, including the high-precision numerical orbit propagator, you must install the asteRiskData package. To install it, run `install.packages('asteRiskData', repos='https://rafael-ayala.github.io/drat/')`. > library("RUnit", quietly = TRUE) > RUnit_opts <- getOption("RUnit", list()) > RUnit_opts$verbose <- 0L > RUnit_opts$silent <- TRUE > RUnit_opts$verbose_fail_msg <- TRUE > oopt <- options(RUnit = RUnit_opts) > on.exit(options(oopt)) > suite <- RUnit::defineTestSuite(name = paste(pkgname, "RUnit Tests"), + dirs = file.path(path.package(pkgname), "tests"), + testFileRegexp = "test_all.R", + rngKind = "default", + rngNormalKind = "default") > > proc.time() user system elapsed 2.73 0.28 3.01