stRoke/tests/testthat/test-index_plot.R
2023-01-11 12:54:08 +01:00

22 lines
984 B
R

test_that("index_plot() works!", {
testthat::expect_type(index_plot(stRoke::score[score$event=="A",]), "list")
testthat::expect_true(inherits(
index_plot(stRoke::score[score$event=="A",]), "ggplot"))
testthat::expect_type(index_plot(stRoke::score[score$event=="A",],
sub_plot = "_per"), "list")
testthat::expect_true(inherits(
index_plot(stRoke::score[score$event=="A",],sub_plot = "_per"), "ggplot"))
testthat::expect_error(index_plot(stRoke::score[score$event=="A",],
sub_plot = "_per",
facet.by = c("id","event")))
testthat::expect_type(index_plot(stRoke::score,
sub_plot = "_per",
facet.by = "event"), "list")
testthat::expect_true(inherits(
index_plot(stRoke::score[score$event=="A",],
sub_plot = "_per",
facet.by = "event"), "ggplot"))
})