diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2022-02-28 11:17:56 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2022-02-28 11:17:56 +0100 |
commit | d68f7cc800fe2342642056780b915821dbe113e0 (patch) | |
tree | 969298f89c8c76bcb03d6d84186ab302c0fd26d7 /tests/testthat/test_plot.R | |
parent | 6b7b93c29115d75bf10c63b61f565a61a2d74498 (diff) |
With saemix 3.0 on CRAN there's no need to check for it in tests
Diffstat (limited to 'tests/testthat/test_plot.R')
-rw-r--r-- | tests/testthat/test_plot.R | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/tests/testthat/test_plot.R b/tests/testthat/test_plot.R index e08fe277..4f484cf3 100644 --- a/tests/testthat/test_plot.R +++ b/tests/testthat/test_plot.R @@ -33,10 +33,8 @@ test_that("Plotting mkinfit, mmkin and mixed model objects is reproducible", { plot_biphasic_mmkin <- function() plot(f_uba_dfop_sfo_mixed) vdiffr::expect_doppelganger("mixed model fit for mmkin object", plot_biphasic_mmkin) - if (saemix_available) { - plot_biphasic_saem_s <- function() plot(f_uba_dfop_sfo_saem) - vdiffr::expect_doppelganger("mixed model fit for saem object with saemix transformations", plot_biphasic_saem_s) - } + plot_biphasic_saem_s <- function() plot(f_uba_dfop_sfo_saem) + vdiffr::expect_doppelganger("mixed model fit for saem object with saemix transformations", plot_biphasic_saem_s) skip_on_travis() @@ -46,12 +44,10 @@ test_that("Plotting mkinfit, mmkin and mixed model objects is reproducible", { #plot_biphasic_mmkin <- function() plot(mixed(mmkin_biphasic)) # Biphasic fits with lots of data and fits have lots of potential for differences plot_biphasic_nlme <- function() plot(nlme_biphasic) - if (saemix_available) { - #plot_biphasic_saem_s <- function() plot(saem_biphasic_s) - plot_biphasic_saem_m <- function() plot(saem_biphasic_m) + #plot_biphasic_saem_s <- function() plot(saem_biphasic_s) + plot_biphasic_saem_m <- function() plot(saem_biphasic_m) - vdiffr::expect_doppelganger("mixed model fit for saem object with mkin transformations", plot_biphasic_saem_m) - } + vdiffr::expect_doppelganger("mixed model fit for saem object with mkin transformations", plot_biphasic_saem_m) # different results when working with eigenvalues plot_errmod_fit_D_obs_eigen <- function() plot_err(fit_D_obs_eigen, sep_obs = FALSE) |