Nothing
# START
# check.char() -----------------------------------------------------------
expect_no_error(
check.char(x="test")
)
expect_no_error(
check.char(miss.ok=TRUE)
)
expect_no_error(
check.char(x=c("test", "abc"), min.len=1)
)
expect_no_error(
check.char(x=NULL, null.ok=TRUE)
)
expect_no_error(
check.char(x=NA_character_, na.ok=TRUE)
)
expect_error(
check.char(x=1)
)
expect_error(
check.char(miss.ok=FALSE)
)
expect_error(
check.char(x=c("test", "abc"), max.len=1)
)
expect_error(
check.char(x=NULL, null.ok=FALSE)
)
expect_error(
check.char(x=NA_character_, na.ok=FALSE)
)
# check.log() ------------------------------------------------------------
expect_no_error(
check.log(x=TRUE)
)
expect_no_error(
check.log(miss.ok=TRUE)
)
expect_no_error(
check.log(x=c(TRUE, FALSE), min.len=1)
)
expect_no_error(
check.log(x=NULL, null.ok=TRUE)
)
expect_no_error(
check.log(x=NA, na.ok=TRUE)
)
expect_error(
check.log(x="test")
)
expect_error(
check.log(miss.ok=FALSE)
)
expect_error(
check.log(x=c(TRUE, FALSE), max.len=1)
)
expect_error(
check.log(x=NULL, null.ok=FALSE)
)
expect_error(
check.log(x=NA, na.ok=FALSE)
)
# check.num() ------------------------------------------------------------
expect_no_error(
check.num(x=1)
)
expect_no_error(
check.num(miss.ok=TRUE)
)
expect_no_error(
check.num(x=1:10, min.len=1)
)
expect_no_error(
check.num(x=NULL, null.ok=TRUE)
)
expect_no_error(
check.num(x=NA_real_, na.ok=TRUE)
)
expect_no_error(
check.num(x=1:10, int=c(0,100))
)
expect_error(
check.num(x="test")
)
expect_error(
check.num(miss.ok=FALSE)
)
expect_error(
check.num(x=1:10, min.len=0, max.len=1)
)
expect_error(
check.num(x=NULL, null.ok=FALSE)
)
expect_error(
check.num(x=NA_real_, na.ok=FALSE)
)
expect_error(
check.num(x=1:10, int=c(0,5))
)
# check.lenghts() --------------------------------------------------------
expect_no_error(
check.lengths(x=1:10, y=1:10)
)
expect_no_error(
check.lengths(x=1:10, y=NULL)
)
expect_no_error(
check.lengths(x=NULL, y=NULL)
)
expect_error(
check.lengths(x=1:10, y=1:8)
)
# END
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.