Nothing
test_that("supported types", {
tms <- 0:5
sc <- new("EffectScenario") %>% set_times(tms)
# scenarios
expect_equal(get_times(sc), tms)
expect_equal(get_times(list(sc, sc)), list(tms, tms))
# sequences
suppressWarnings(sq <- sequence(list(sc)))
expect_equal(get_times(sq), tms)
sq <- sequence(list(sc, sc), breaks=3)
expect_equal(get_times(sq), tms)
})
test_that("unsupported types", {
expect_error(get_times(1), "not supported")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.