Nothing
testthat::context("ExprField class")
testthat::test_that("Initializer works fine", {
testthat::expect_error(ExprField$new())
testthat::expect_error(ExprField$new(tabl = "a"))
testthat::expect_error(ExprField$new(""))
ExprField$new("a")
})
testthat::test_that("Conversion to string works fine", {
testthat::expect_equal(ExprField$new("a")$toString(), "a")
testthat::expect_equal(ExprField$new("a_b")$toString(), "a_b")
testthat::expect_equal(ExprField$new("a b")$toString(), '"a b"')
})
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.