# Copyright 2015-2023 Province of British Columbia # Copyright 2021 Environment and Climate Change Canada # Copyright 2023-2024 Australian Government Department of Climate Change, # Energy, the Environment and Water # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. test_that("ssd_hc_burrlioz deprecated", { fit <- ssd_fit_burrlioz(ssddata::ccme_boron) withr::with_seed(50, { expect_defunct(hc_boron <- ssd_hc_burrlioz(fit, nboot = 10, ci = TRUE, min_pboot = 0)) }) }) test_that("ssd_hc gets estimates with invpareto", { fit <- ssd_fit_burrlioz(ssddata::ccme_boron) withr::with_seed(50, { hc_boron <- ssd_hc(fit, nboot = 10, ci = TRUE, min_pboot = 0, samples = TRUE) }) expect_snapshot_data(hc_boron, "hc_boron") }) test_that("ssd_hc gets estimates with invpareto no ci", { fit <- ssd_fit_burrlioz(ssddata::ccme_boron) withr::with_seed(47, { hc_boron <- ssd_hc(fit, nboot = 10, ci = FALSE, min_pboot = 0) }) expect_snapshot_data(hc_boron, "hc_boron_no_ci") }) test_that("ssd_hc gets estimates with burrIII3", { withr::with_seed(99, { data <- data.frame(Conc = ssd_rburrIII3(30)) }) fit <- ssd_fit_burrlioz(data) expect_identical(names(fit), "burrIII3") withr::with_seed(49, { hc_burrIII3 <- ssd_hc(fit, nboot = 10, ci = TRUE, min_pboot = 0, samples = TRUE) }) expect_snapshot_data(hc_burrIII3, "hc_burrIII3") }) test_that("ssd_hc currently errors with burrIII3", { withr::with_seed(50, { data <- data.frame(Conc = ssd_rburrIII3(30)) }) fit <- ssd_fit_burrlioz(data) expect_identical(names(fit), "burrIII3") # FIXME: currently errors - also hp withr::with_seed(50, { expect_error(hc_burrIII3 <- ssd_hc(fit, nboot = 10, ci = TRUE, min_pboot = 0)) }) }) test_that("ssd_hc gets estimates with burrIII3 parametric", { withr::with_seed(99, { data <- data.frame(Conc = ssd_rburrIII3(30)) }) fit <- ssd_fit_burrlioz(data) expect_identical(names(fit), "burrIII3") withr::with_seed(49, { hc_burrIII3 <- ssd_hc(fit, nboot = 10, ci = TRUE, min_pboot = 0, parametric = TRUE, samples = TRUE) }) expect_snapshot_data(hc_burrIII3, "hc_burrIII3_parametric") })