Nothing
## load data
input.csv <- file.path(test_path("_data"),
paste0("CLBR_IR", c(50, 100, 150, 225), ".csv"))
test_that("input validation", {
testthat::skip_on_cran()
expect_error(fit_IsothermalHolding(list()),
"'data' should be of class 'character', 'RLum.Results' or")
expect_error(fit_IsothermalHolding("error", rhop = 1e-7),
"File does not exist")
expect_error(fit_IsothermalHolding(set_RLum("RLum.Results", data = list(1)),
rhop = 1e-7),
"'data' has unsupported originator")
expect_error(fit_IsothermalHolding(iris, rhop = 1e-7),
"'data' has the wrong column headers")
expect_error(fit_IsothermalHolding(input.csv[1], ITL_model = "error"),
"'ITL_model' should be one of 'GOK' or 'BTS'")
expect_error(fit_IsothermalHolding(input.csv[1], rhop = "error"),
"'rhop' should be of class 'numeric' or 'RLum.Results'")
expect_error(fit_IsothermalHolding(input.csv[1], rhop = 1e-7, plot = "error"),
"'plot' should be a single logical value")
expect_error(fit_IsothermalHolding(input.csv[1], rhop = 1e-7, verbose = "error"),
"'verbose' should be a single logical value")
expect_error(fit_IsothermalHolding(test_path("_data/CLBR.xlsx"), rhop = 1e-7),
"XLS/XLSX format is not supported, use CSV instead")
})
test_that("check functionality", {
testthat::skip_on_cran()
SW({
expect_s4_class(fit_IsothermalHolding(input.csv, rhop = 1e-7),
"RLum.Results")
data <- .import_ThermochronometryData(input.csv[1])
expect_s4_class(fit_IsothermalHolding(data, rhop = 1e-7, mfrow = c(2, 2)),
"RLum.Results")
})
})
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.