Skip to content

Commit 20eda34

Browse files
committed
.
1 parent 0e6674a commit 20eda34

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

RcppTskit/tests/testthat/test_cpp_public_api.R

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,28 @@ test_that("public C++ wrappers compile for downstream-style usage", {
4242
)
4343

4444
ts_file <- system.file("examples/test.trees", package = "RcppTskit")
45+
# jarl-ignore internal_function: it's just a test
4546
ts_xptr <- RcppTskit:::ts_xptr_load(ts_file)
47+
# jarl-ignore internal_function: it's just a test
4648
tc_xptr <- RcppTskit:::tc_xptr_load(ts_file)
4749

4850
tc_scalars <- tc_public_scalars(tc_xptr)
51+
# jarl-ignore internal_function: it's just a test
4952
expect_identical(
5053
tc_scalars$has_reference_sequence,
5154
RcppTskit:::tc_xptr_has_reference_sequence(tc_xptr)
5255
)
56+
# jarl-ignore internal_function: it's just a test
5357
expect_identical(
5458
tc_scalars$time_units,
5559
RcppTskit:::tc_xptr_time_units(tc_xptr)
5660
)
61+
# jarl-ignore internal_function: it's just a test
5762
expect_identical(tc_scalars$file_uuid, RcppTskit:::tc_xptr_file_uuid(tc_xptr))
63+
# jarl-ignore internal_function: it's just a test
5864
expect_identical(tc_scalars$has_index, RcppTskit:::tc_xptr_has_index(tc_xptr))
59-
65+
# jarl-ignore internal_function: it's just a test
6066
expect_equal(ts_public_summary(ts_xptr), RcppTskit:::ts_xptr_summary(ts_xptr))
67+
# jarl-ignore internal_function: it's just a test
6168
expect_equal(tc_public_summary(tc_xptr), RcppTskit:::tc_xptr_summary(tc_xptr))
6269
})

0 commit comments

Comments
 (0)