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
|
|
|
# ==================================================================== #
|
|
|
|
|
|
|
|
context("age.R")
|
2018-12-15 22:40:07 +01:00
|
|
|
|
|
|
|
test_that("age works", {
|
|
|
|
expect_equal(age(x = c("1980-01-01", "1985-01-01", "1990-01-01"),
|
2018-12-22 22:39:34 +01:00
|
|
|
reference = "2019-01-01"),
|
2018-12-15 22:40:07 +01:00
|
|
|
c(39, 34, 29))
|
|
|
|
|
|
|
|
expect_error(age(x = c("1980-01-01", "1985-01-01", "1990-01-01"),
|
2018-12-22 22:39:34 +01:00
|
|
|
reference = c("2019-01-01", "2019-01-01")))
|
2018-12-15 22:40:07 +01:00
|
|
|
|
2019-01-25 13:18:41 +01:00
|
|
|
expect_warning(age(x = c("1980-01-01", "1985-01-01", "1990-01-01"),
|
2018-12-22 22:39:34 +01:00
|
|
|
reference = "1975-01-01"))
|
2018-12-15 22:40:07 +01:00
|
|
|
|
|
|
|
expect_warning(age(x = c("1800-01-01", "1805-01-01", "1810-01-01"),
|
2018-12-22 22:39:34 +01:00
|
|
|
reference = "2019-01-01"))
|
2018-12-15 22:40:07 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
test_that("age_groups works", {
|
|
|
|
ages <- c(3, 8, 16, 54, 31, 76, 101, 43, 21)
|
|
|
|
|
|
|
|
expect_equal(length(unique(age_groups(ages, 50))),
|
|
|
|
2)
|
|
|
|
expect_equal(length(unique(age_groups(ages, c(50, 60)))),
|
|
|
|
3)
|
2018-12-16 22:45:12 +01:00
|
|
|
expect_identical(class(age_groups(ages, "child")),
|
2018-12-15 22:40:07 +01:00
|
|
|
c("ordered", "factor"))
|
|
|
|
|
2018-12-16 22:45:12 +01:00
|
|
|
expect_identical(class(age_groups(ages, "elderly")),
|
|
|
|
c("ordered", "factor"))
|
|
|
|
|
|
|
|
expect_identical(class(age_groups(ages, "tens")),
|
|
|
|
c("ordered", "factor"))
|
|
|
|
|
|
|
|
expect_identical(class(age_groups(ages, "fives")),
|
|
|
|
c("ordered", "factor"))
|
2018-12-15 22:40:07 +01:00
|
|
|
|
|
|
|
})
|