2023-01-04 14:33:48 +01:00
|
|
|
# Unit Test
|
|
|
|
|
|
|
|
# Test that the function throws an error when uri and token are not provided
|
2023-01-12 13:44:29 +01:00
|
|
|
test_that("read_redcap_tables throws error when uri and token are not provided",
|
|
|
|
{
|
|
|
|
testthat::expect_error(read_redcap_tables(uri, token))
|
|
|
|
})
|