mirror of
				https://github.com/msberends/AMR.git
				synced 2025-11-04 09:14:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			R
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			R
		
	
	
		
			Executable File
		
	
	
	
	
# ==================================================================== #
 | 
						|
# TITLE                                                                #
 | 
						|
# Antimicrobial Resistance (AMR) Analysis                              #
 | 
						|
#                                                                      #
 | 
						|
# SOURCE                                                               #
 | 
						|
# https://gitlab.com/msberends/AMR                                     #
 | 
						|
#                                                                      #
 | 
						|
# LICENCE                                                              #
 | 
						|
# (c) 2019 Berends MS (m.s.berends@umcg.nl), Luz CF (c.f.luz@umcg.nl)  #
 | 
						|
#                                                                      #
 | 
						|
# 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.gitlab.io/AMR.    #
 | 
						|
# ==================================================================== #
 | 
						|
 | 
						|
context("ab.R")
 | 
						|
 | 
						|
test_that("as.ab works", {
 | 
						|
  expect_equal(as.character(as.ab(c("J01FA01",
 | 
						|
                                    "J 01 FA 01",
 | 
						|
                                    "Erythromycin",
 | 
						|
                                    "eryt",
 | 
						|
                                    "   eryt 123",
 | 
						|
                                    "ERYT",
 | 
						|
                                    "ERY",
 | 
						|
                                    "erytromicine",
 | 
						|
                                    "Erythrocin",
 | 
						|
                                    "Romycin"))),
 | 
						|
               rep("ERY", 10))
 | 
						|
 | 
						|
  expect_identical(class(as.ab("amox")), "ab")
 | 
						|
  expect_identical(class(pull(antibiotics, ab)), "ab")
 | 
						|
  expect_true(is.ab(as.ab("amox")))
 | 
						|
  expect_output(print(as.ab("amox")))
 | 
						|
  expect_output(print(data.frame(a = as.ab("amox"))))
 | 
						|
 | 
						|
  expect_warning(as.ab("Z00ZZ00")) # not yet available in data set
 | 
						|
  expect_warning(as.ab("UNKNOWN"))
 | 
						|
  expect_warning(as.ab(""))
 | 
						|
 | 
						|
  expect_output(print(as.ab("amox")))
 | 
						|
 | 
						|
  expect_identical(class(pull(antibiotics, ab)), "ab")
 | 
						|
 | 
						|
  expect_equal(as.character(as.ab("Phloxapen")),
 | 
						|
               "FLC")
 | 
						|
 | 
						|
  expect_equal(suppressWarnings(as.character(as.ab(c("Bacteria", "Bacterial")))),
 | 
						|
               c(NA, "TMP"))
 | 
						|
 | 
						|
 | 
						|
})
 |