# test_GMLTimeInstant.R # Author: Emmanuel Blondel # # Description: Unit tests for GMLTimeInstant.R #======================= require(geometa, quietly = TRUE) require(testthat) require(XML) context("GMLTimeInstant") test_that("encoding - with dates",{ testthat::skip_on_cran() #encoding time <- ISOdate(2000, 1, 12, 12, 59, 45) md <- GMLTimeInstant$new(timePosition = time) xml <- md$encode() expect_is(xml, "XMLInternalNode") #decoding md2 <- GMLTimeInstant$new(xml = xml) xml2 <- md2$encode() expect_true(ISOAbstractObject$compare(md, md2)) }) test_that("encoding - with year+month",{ testthat::skip_on_cran() #encoding md <- GMLTimeInstant$new(timePosition = "2019-02") xml <- md$encode() expect_is(xml, "XMLInternalNode") #decoding md2 <- GMLTimeInstant$new(xml = xml) xml2 <- md2$encode() expect_true(ISOAbstractObject$compare(md, md2)) }) test_that("encoding - with year",{ testthat::skip_on_cran() #encoding md <- GMLTimeInstant$new(timePosition = 2019) xml <- md$encode() expect_is(xml, "XMLInternalNode") #decoding md2 <- GMLTimeInstant$new(xml = xml) xml2 <- md2$encode() expect_true(ISOAbstractObject$compare(md, md2)) })