tests/testthat/test-tri-sanity.R

context("test-TRI-sanity")
x <- TRI(minimal_mesh)
skip_on_cran()
test_that("TRI round trip suite works", {
  expect_silent({
  SC(x)
  SC0(x)
  # must go in anglr
  #anglr::DEL(SC(x))  ## have to SC it first
  #plot(anglr::DEL(SC(x)))

  plot(SC(x))
  plot(SC0(x))
  sc_vertex(x)
  sc_coord(x)
  sc_node(x)
  sc_edge(x)
  sc_segment(x)
  sc_start(x)
  sc_end(x)
  sc_object(x)

  TRI(x)
  TRI0(x)

})

 ## FIXED 2020-05-15 expect_warning(  TRI(TRI0(x)))
  expect_silent({

    sc_triangle(x)


  })
})


 test_that("errors when SC0 round trip unsupported", {
   expect_error(sc_arc(x))
   expect_error(sc_path(x))
   ## put in anglr
#   expect_error(anglr::DEL(x))

   expect_error(ARC(x))
   expect_error(ARC0(x))
   expect_error(PATH(x))
   expect_error(PATH0(x))
})

Try the silicate package in your browser

Any scripts or data that you put into this service are public.

silicate documentation built on Jan. 7, 2023, 1:15 a.m.