R Under development (unstable) (2024-02-11 r85891 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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. > library(testthat) > library(MiscMetabar) Loading required package: phyloseq Loading required package: ggplot2 Loading required package: dada2 Loading required package: Rcpp Loading required package: dplyr Attaching package: 'dplyr' The following object is masked from 'package:testthat': matches The following objects are masked from 'package:stats': filter, lag The following objects are masked from 'package:base': intersect, setdiff, setequal, union > > test_check("MiscMetabar") Starting 2 test processes ✔ Updated metadata database: 5.20 MB in 15 files. ℹ Updating metadata database ✔ Updating metadata database ... done → Will install 2 packages. → Will download 2 CRAN packages (5.91 MB). + abc 2.2.1 [dl] (1.00 MB) + abc.data 1.0 [dl] (4.91 MB) ℹ Getting 2 pkgs (5.91 MB) ✔ Got abc 2.2.1 (i386+x86_64-w64-mingw32) (1.00 MB) ✔ Got abc.data 1.0 (i386+x86_64-w64-mingw32) (4.91 MB) ✔ Installed abc.data 1.0 (193ms) ✔ Installed abc 2.2.1 (100ms) ✔ 1 pkg + 10 deps: kept 9, added 2, dld 2 (5.91 MB) [29.1s] [ FAIL 0 | WARN 1 | SKIP 45 | PASS 266 ] ══ Skipped tests (45) ══════════════════════════════════════════════════════════ • On CRAN (32): 'test_adonis.R:6:3', 'test_deprecated.R:28:3', 'test_figures_beta_div.R:23:3', 'test_figures_beta_div.R:72:3', 'test_figures_beta_div.R:90:3', 'test_figures_beta_div.R:99:3', 'test_figures_beta_div.R:154:3', 'test_figures_beta_div.R:234:3', 'test_figures_beta_div.R:250:3', 'test_figures_beta_div.R:275:3', 'test_figures_beta_div.R:307:3', 'test_figures_beta_div.R:332:3', 'test_figures_beta_div.R:348:3', 'test_figures_beta_div.R:373:3', 'test_figures_biplot.R:23:5', 'test_figures_biplot.R:62:3', 'test_figures_misc.R:27:3', 'test_figures_misc.R:38:3', 'test_krona.R:7:3', 'test_misc.R:11:3', 'test_misc.R:30:3', 'test_misc.R:98:3', 'test_misc.R:106:3', 'test_figures_taxo.R:34:3', 'test_figures_taxo.R:49:3', 'test_figures_taxo.R:76:3', 'test_figures_taxo.R:170:3', 'test_figures_taxo.R:209:3', 'test_figures_taxo.R:250:3', 'test_figures_taxo.R:315:3', 'test_figures_taxo.R:340:3', 'test_figures_taxo.R:364:3' • On Windows (13): 'test_figures_beta_div.R:202:3', 'test_figures_beta_div.R:386:3', 'test_figures_beta_div.R:397:3', 'test_figures_misc.R:10:3', 'test_figures_misc.R:18:3', 'test_phyloseq_class.R:92:3', 'test_rw.R:36:3', 'test_table_functions.R:5:3', 'test_table_functions.R:16:3', 'test_figures_taxo.R:16:3', 'test_figures_taxo.R:398:3', 'test_targets.R:81:3', 'test_targets.R:123:3' [ FAIL 0 | WARN 1 | SKIP 45 | PASS 266 ] > > # expect_equal() is equal within small numerical tolerance? > # expect_identical() is exactly equal? > # expect_match() matches specified string or regular > # expect_output() prints specified output? > # expect_message() displays specified message? > # expect_warning() displays specified warning? > # expect_error() throws specified error? > # expect_is() output inherits from certain class? > # expect_false() returns FALSE? > # expect_true() returns TRUE? > > ## expect_error(1 / "a", "non-numeric argument") > ## expect_warning(log(-1), "NaNs produced") > > proc.time() user system elapsed 16.73 1.76 275.26