test_that("print.Tukey works", { expect_output(print(Tukey(1, 2, 2)), regexp = "Tukey") }) test_that("random.Tukey work correctly", { d <- Tukey(4, 16, 2) expect_length(random(d), 1) expect_length(random(d, 100), 100) expect_length(random(d[-1], 1), 0) expect_length(random(d, 0), 0) expect_error(random(d, -2)) # consistent with base R, using the `length` as number of samples to draw expect_length(random(d, c(1, 2, 3)), 3) expect_length(random(d, cbind(1, 2, 3)), 3) expect_length(random(d, rbind(1, 2, 3)), 3) }) test_that("vectorization of a Tukey distribution work correctly", { d <- Tukey(c(3L, 4L), 16L, 2L) d1 <- d[1] d2 <- d[2] ## cdf expect_equal(cdf(d, 0.5), c(cdf(d1, 0.5), cdf(d2, 0.5))) ## quantile expect_equal(quantile(d, 0.5), c(quantile(d1, 0.5), quantile(d2, 0.5))) expect_equal(quantile(d, c(0.5, 0.5)), c(quantile(d1, 0.5), quantile(d2, 0.5))) expect_equal( quantile(d, c(0.1, 0.5, 0.9)), matrix( rbind(quantile(d1, c(0.1, 0.5, 0.9)), quantile(d2, c(0.1, 0.5, 0.9))), ncol = 3, dimnames = list(NULL, c("q_0.1", "q_0.5", "q_0.9")) ) ) ## elementwise expect_equal( cdf(d, c(0.25, 0.75), elementwise = TRUE), diag(cdf(d, c(0.25, 0.75), elementwise = FALSE)) ) expect_equal( quantile(d, c(0.25, 0.75), elementwise = TRUE), diag(quantile(d, c(0.25, 0.75), elementwise = FALSE)) ) ## support expect_equal( support(d), matrix( c(support(d1)[1], support(d2)[1], support(d1)[2], support(d2)[2]), ncol = 2, dimnames = list(names(d), c("min", "max")) ) ) expect_true(!any(is_discrete(d))) expect_true(all(is_continuous(d))) expect_true(is.numeric(support(d1))) expect_true(is.numeric(support(d1, drop = FALSE))) expect_null(dim(support(d1))) expect_equal(dim(support(d1, drop = FALSE)), c(1L, 2L)) }) test_that("named return values for Tukey distribution work correctly", { d <- Tukey(c(3L, 4L), 16L, 2L) names(d) <- LETTERS[1:length(d)] expect_equal(names(cdf(d, 0.5)), LETTERS[1:length(d)]) expect_equal(names(cdf(d, c(0.5, 0.7))), LETTERS[1:length(d)]) expect_equal(rownames(cdf(d, c(0.5, 0.7, 0.9))), LETTERS[1:length(d)]) expect_equal(names(quantile(d, 0.5)), LETTERS[1:length(d)]) expect_equal(names(quantile(d, c(0.5, 0.7))), LETTERS[1:length(d)]) expect_equal(rownames(quantile(d, c(0.5, 0.7, 0.9))), LETTERS[1:length(d)]) expect_equal(names(support(d[1])), c("min", "max")) expect_equal(colnames(support(d)), c("min", "max")) expect_equal(rownames(support(d)), LETTERS[1:length(d)]) })