diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-12-09 10:52:55 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-12-09 10:52:55 +0100 |
commit | 25fef221d589b5eebe32829633372d785e750d2a (patch) | |
tree | 2afd5b929e7d6a12cee19bada564a7905129dea0 /tests/testthat/test_saem.R | |
parent | 107ddb89a4a6e0e15d9f82eafcf9eebecf4904ba (diff) |
Test print method for mixed.mmkin
Diffstat (limited to 'tests/testthat/test_saem.R')
-rw-r--r-- | tests/testthat/test_saem.R | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/testthat/test_saem.R b/tests/testthat/test_saem.R index 869ca120..aa32d0b5 100644 --- a/tests/testthat/test_saem.R +++ b/tests/testthat/test_saem.R @@ -100,9 +100,12 @@ test_that("Parent only models can be fitted with saemix", { expect_true(all(rel_diff_2 < 0.08)) }) -test_that("Simple models with metabolite can be fitted with saemix", { - +test_that("Print methods work", { expect_known_output(print(sfo_saemix_1, digits = 1), "print_sfo_saemix_1.txt") + expect_known_output(print(mmkin_biphasic_mixed, digits = 2), "print_mmkin_biphasic_mixed.txt") +}) + +test_that("Saemix results are reproducible", { test_summary <- summary(saem_biphasic_s) test_summary$saemixversion <- "Dummy 0.0 for testing" |