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. #
|
|
|
|
# Visit our website for more info: https://msberends.gitab.io/AMR. #
|
2018-12-16 22:45:12 +01:00
|
|
|
# ==================================================================== #
|
|
|
|
|
2018-03-27 17:43:42 +02:00
|
|
|
context("atc.R")
|
|
|
|
|
2019-01-28 11:20:32 +01:00
|
|
|
test_that("as.atc works", {
|
2019-01-29 00:06:50 +01:00
|
|
|
expect_equal(suppressWarnings(as.character(as.atc(c("J01FA01",
|
2019-01-28 11:20:32 +01:00
|
|
|
"Erythromycin",
|
|
|
|
"eryt",
|
|
|
|
"ERYT",
|
|
|
|
"ERY",
|
|
|
|
"Erythrocin",
|
|
|
|
"Eryzole",
|
|
|
|
"Pediamycin")))),
|
2018-04-30 16:24:11 +02:00
|
|
|
rep("J01FA01", 8))
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
expect_identical(class(as.atc("amox")), "atc")
|
2018-08-29 16:25:57 +02:00
|
|
|
expect_identical(class(pull(antibiotics, atc)), "atc")
|
2019-01-26 23:22:56 +01:00
|
|
|
expect_identical(atc_trivial_nl("Cefmenoxim"), "Cefmenoxim")
|
2018-08-29 12:27:37 +02:00
|
|
|
|
|
|
|
expect_warning(as.atc("Z00ZZ00")) # not yet available in data set
|
2018-08-29 16:25:57 +02:00
|
|
|
expect_warning(as.atc("UNKNOWN"))
|
|
|
|
|
|
|
|
expect_output(print(as.atc("amox")))
|
2018-08-29 12:27:37 +02:00
|
|
|
|
2018-08-28 13:51:13 +02:00
|
|
|
# first 5 chars of official name
|
|
|
|
expect_equal(as.character(as.atc(c("nitro", "cipro"))),
|
|
|
|
c("J01XE01", "J01MA02"))
|
2018-08-25 22:01:14 +02:00
|
|
|
|
2019-01-29 00:06:50 +01:00
|
|
|
# EARS-Net
|
|
|
|
expect_equal(as.character(as.atc("AMX")),
|
|
|
|
"J01CA04")
|
|
|
|
|
2018-08-25 22:01:14 +02:00
|
|
|
})
|