Nothing
testthat::context("TokenValue class")
testthat::test_that("Conversion to string works fine", {
testthat::expect_equal(TokenValue$new("")$toString(), "''")
testthat::expect_equal(TokenValue$new('"')$toString(), "'\"'")
testthat::expect_equal(TokenValue$new("'")$toString(), "''''")
testthat::expect_equal(TokenValue$new("a")$toString(), "'a'")
testthat::expect_equal(TokenValue$new(10L)$toString(), "10")
testthat::expect_equal(TokenValue$new(10)$toString(), "10")
testthat::expect_equal(TokenValue$new(1.2)$toString(), "1.2")
})
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.