## test_uf.R
library("Mapper")
library("testthat")
testthat::context("Testing union find data structure")
## Tests union find data structure
testthat::test_that("UnionFind is constructible", {
uf <- Mapper::union_find(10)
testthat::expect_is(uf, "Rcpp_UnionFind")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.