2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
# TITLE #
|
|
|
|
# Antimicrobial Resistance (AMR) Analysis #
|
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# SOURCE #
|
|
|
|
# https://gitlab.com/msberends/AMR #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
|
|
|
# LICENCE #
|
2019-01-02 23:24:07 +01:00
|
|
|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl) #
|
2018-12-16 22:45:12 +01:00
|
|
|
# #
|
2019-01-02 23:24:07 +01:00
|
|
|
# This R package is free software; you can freely use and distribute #
|
|
|
|
# it for both personal and commercial purposes under the terms of the #
|
|
|
|
# GNU General Public License version 2.0 (GNU GPL-2), as published by #
|
|
|
|
# the Free Software Foundation. #
|
|
|
|
# #
|
|
|
|
# This R package was created for academic research and was publicly #
|
|
|
|
# released in the hope that it will be useful, but it comes WITHOUT #
|
|
|
|
# ANY WARRANTY OR LIABILITY. #
|
2019-04-05 18:47:39 +02:00
|
|
|
# Visit our website for more info: https://msberends.gitlab.io/AMR. #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-08-31 13:36:19 +02:00
|
|
|
context("deprecated.R")
|
|
|
|
|
|
|
|
test_that("deprecated functions work", {
|
|
|
|
|
|
|
|
expect_error(suppressWarnings(ratio("A")))
|
|
|
|
expect_error(suppressWarnings(ratio(1, ratio = "abc")))
|
|
|
|
expect_error(suppressWarnings(ratio(c(1, 2), ratio = c(1, 2, 3))))
|
|
|
|
expect_warning(ratio(c(772, 1611, 737), ratio = "1:2:1"))
|
|
|
|
expect_identical(suppressWarnings(ratio(c(772, 1611, 737), ratio = "1:2:1")), c(780, 1560, 780))
|
|
|
|
expect_identical(suppressWarnings(ratio(c(1752, 1895), ratio = c(1, 1))), c(1823.5, 1823.5))
|
|
|
|
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_warning(atc_property("amox"))
|
|
|
|
expect_warning(atc_official("amox"))
|
2019-02-27 11:36:12 +01:00
|
|
|
expect_warning(ab_official("amox"))
|
2019-05-10 16:44:59 +02:00
|
|
|
expect_warning(atc_name("amox"))
|
|
|
|
expect_warning(atc_trivial_nl("amox"))
|
|
|
|
expect_warning(atc_tradenames("amox"))
|
2019-02-27 11:36:12 +01:00
|
|
|
|
2018-08-31 13:36:19 +02:00
|
|
|
})
|