Nothing
context("setClasses")
test_that("setClasses", {
x = list(a=1)
expect_equal(setClasses(x, "foo"), structure(list(a=1), class="foo"))
expect_equal(setClasses(x, c("foo1", "foo2")), structure(list(a=1), class=c("foo1", "foo2")))
})
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.