mirror of
https://github.com/msberends/AMR.git
synced 2024-12-26 07:26:13 +01:00
unit test
This commit is contained in:
parent
1a02d302d4
commit
ad3061c754
@ -1,5 +1,5 @@
|
||||
Package: AMR
|
||||
Version: 2.0.0.9007
|
||||
Version: 2.0.0.9008
|
||||
Date: 2023-04-15
|
||||
Title: Antimicrobial Resistance Data Analysis
|
||||
Description: Functions to simplify and standardise antimicrobial resistance (AMR)
|
||||
|
2
NEWS.md
2
NEWS.md
@ -1,4 +1,4 @@
|
||||
# AMR 2.0.0.9007
|
||||
# AMR 2.0.0.9008
|
||||
|
||||
## Changed
|
||||
* formatting fix for `sir_interpretation_history()`
|
||||
|
@ -279,13 +279,8 @@ expect_equal(suppressWarnings(as.mo("Virus")), as.mo("UNKNOWN"))
|
||||
expect_equal(length(summary(example_isolates$mo)), 6)
|
||||
|
||||
# WHONET codes and NA/NaN
|
||||
expect_equal(
|
||||
as.character(as.mo(c("xxx", "na", "nan"))),
|
||||
rep(NA_character_, 3)
|
||||
)
|
||||
expect_equal(as.character(as.mo("con")), "UNKNOWN")
|
||||
expect_equal(as.character(as.mo("xxx")), NA_character_)
|
||||
expect_equal(as.character(as.mo(c("xxx", "con", "eco"))), c(NA_character_, "UNKNOWN", "B_ESCHR_COLI"))
|
||||
expect_true(all(is.na(as.mo(c("xxx", "na", "nan")))))
|
||||
expect_equal(as.character(as.mo(c("con", "eco"))), c("UNKNOWN", "B_ESCHR_COLI"))
|
||||
expect_equal(
|
||||
as.character(suppressWarnings(as.mo(c("other", "none", "unknown")))),
|
||||
rep("UNKNOWN", 3)
|
||||
|
Loading…
Reference in New Issue
Block a user