mirror of
https://github.com/agdamsbo/stRoke.git
synced 2024-11-22 21:10:23 +01:00
22 lines
984 B
R
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"))
|
|
})
|