Nothing
# View coverage for this file using
# library(testthat); library(FeatureExtraction)
# covr::file_report(covr::file_coverage("R/FeatureExtraction.R", "tests/testthat/test-FeatureExtractionInternal.R"))
test_that("Test .onLoad()", {
expect_silent(
FeatureExtraction:::.onLoad(libname = "FeatureExtraction", pkgname = "FeatureExtraction")
)
})
test_that("Test JSON functions", {
expectedToJsonResult <- "{\"id\":\"1\"}"
expectedFromJsonResult <- list("id" = "1")
toJsonResult <- FeatureExtraction:::.toJson(expectedFromJsonResult)
expect_equal(toJsonResult, expectedToJsonResult)
fromJsonResult <- FeatureExtraction:::.fromJson(expectedToJsonResult)
expect_equal(fromJsonResult, expectedFromJsonResult)
})
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.