R Under development (unstable) (2023-11-08 r85496 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 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. > ### > ### PRIMES.R +++ Test suite +++ > ### > > > test.primes <- function(input, expected) { + output <- do.call(getFromNamespace("primes", "pracma"), input) + identical(output, expected) + } > > primes.expected.n1 <- NULL > primes.expected.n2 <- 2 > primes.expected.n3 <- c(2, 3) > primes.expected.n5 <- c(2, 3, 5) > primes.expected.n8 <- c(2, 3, 5, 7) > primes.expected.101 <- c( 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, + 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97,101) > > test.primes(list(n=1), primes.expected.n1) [1] TRUE > test.primes(list(n=2), primes.expected.n2) [1] TRUE > test.primes(list(n=3), primes.expected.n3) [1] TRUE > test.primes(list(n=5), primes.expected.n5) [1] TRUE > test.primes(list(n=8), primes.expected.n8) [1] TRUE > test.primes(list(n=101), primes.expected.101) [1] TRUE > > proc.time() user system elapsed 0.17 0.01 0.17