Tests a Standard R 'vector' Element-By-Element ('RTestTest_vector_elementbyelement')

test_returnValue_vector_elementbyelement(result, reference, xmlTestSpec,
  add.desc = NULL)

Arguments

result

(vector) The result vector to be tested

reference

(vector) The reference vector

xmlTestSpec

(XMLNode) The XML definition of type 'RTestTest_vector_elementbyelement'

add.desc

(character) Additional description added to the XML definition.

See also

Examples

# Cleaning up tryCatch(unloadNamespace("RTest")) tryCatch(unloadNamespace("testthat")) library(RTest)
#> Loading required package: testthat
#> #> Attaching package: ‘testthat’
#> The following objects are masked from ‘package:magrittr’: #> #> equals, is_less_than, not
data <- '<test_variable desc="Compare a value" diff-type="absolute" compare-type="equal" tolerance="1E-3"/>' xmlTestSpec <- XML::xmlRoot(XML::xmlParse(data,asText=TRUE)) test_returnValue_vector_elementbyelement(c(5,5),c(5,5),xmlTestSpec) test_returnValue_vector_elementbyelement(c(5,5),c(5,5.000001),xmlTestSpec) data <- '<test_variable desc="Compare a value" diff-type="relative" compare-type="equal" tolerance="1E-6"/>' xmlTestSpec <- XML::xmlRoot(XML::xmlParse(data,asText=TRUE)) tryCatch(unloadNamespace("RTest")) tryCatch(unloadNamespace("testthat")) library(RTest)
#> Loading required package: testthat
#> #> Attaching package: ‘testthat’
#> The following objects are masked from ‘package:magrittr’: #> #> equals, is_less_than, not
tryCatch( test_returnValue_vector_elementbyelement(c(5,5),c(5,5.0001),xmlTestSpec), error=function(e){ stopifnot(grepl("5 not equal to 5.0001.",e)) })