library(testthat)
# Define a test for concentration_category
test_that("concentration_category returns expected output", {
data(ctd_roi_merge)
# Call concentration_category with binSize = 1 and imageVolume = 1000
result <- expect_warning(
concentration_category(data = ctd_roi_merge,
category = "Calanus",
category_list = c("bad_image_blurry", "bad_image_malfunction", "bad_image_strobe",
"Calanus", "chaetognaths", "ctenophores", "krill", "marine_snow",
"Other", "small_copepod", "stick", "n_roi_total"),
binSize = 1,
imageVolume = 1000,
rev = FALSE,
breaks = 1000,
cutoff = 0.1)
)
# Check that the result is a data frame with the expected columns
expect_is(result, "data.frame")
expect_true(unique(c("n_roi_bin", "conc_m3") %in% colnames(result)))
# Check that the result has the expected values (weak to changes in test data)
expect_equal(range(result$n_roi_bin), c(0, 2)) # tests specific to this dataset
expect_true(max(result$conc) > 150000)
expect_true(max(result$conc) != 0)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.