R Under development (unstable) (2023-09-10 r85120 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. > library(testthat) > library(magickGUI) Loading required package: magick Linking to ImageMagick 6.9.12.93 Enabled features: cairo, freetype, fftw, ghostscript, heic, lcms, pango, raw, rsvg, webp Disabled features: fontconfig, x11 > > > get_minimum_version <- function() + { + "6.9.5.4" # minimum version is written in R/misc.R file, too. Rewrite R/misc.R file if minimum version is changed. + } > > version_ImageMagick <- magick_config()$version > > if (version_ImageMagick >= get_minimum_version()) + { + test_check("magickGUI") + } [ FAIL 0 | WARN 0 | SKIP 17 | PASS 0 ] ══ Skipped tests (17) ══════════════════════════════════════════════════════════ • On CRAN (17): 'test_interactive_annotate.R:3:3', 'test_interactive_blur.R:3:3', 'test_interactive_canny.R:3:3', 'test_interactive_charcoal.R:3:3', 'test_interactive_composite.R:3:3', 'test_interactive_crop.R:3:3', 'test_interactive_despeckle.R:3:3', 'test_interactive_emboss.R:3:3', 'test_interactive_fill.R:3:3', 'test_interactive_implode.R:3:3', 'test_interactive_modulate.R:3:3', 'test_interactive_motion_blur.R:3:3', 'test_interactive_oilpaint.R:3:3', 'test_interactive_quantize.R:3:3', 'test_interactive_reducenoise.R:3:3', 'test_interactive_shade.R:3:3', 'test_interactive_threshold.R:3:3' [ FAIL 0 | WARN 0 | SKIP 17 | PASS 0 ] > > proc.time() user system elapsed 1.45 0.20 1.64