Nothing
context("suppressAll")
test_that("suppressAll", {
expect_equal(suppressAll(123), 123)
expect_output({print(123);0}, "123")
expect_silent(suppressAll({print(123);0}))
expect_warning(warning(123), "123")
expect_silent(suppressAll({warning(123);0}))
expect_message(message(123), "123")
expect_silent(suppressAll(message(123)))
})
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.