*_posixt()
check if an argument is a POSIXt
object.
Usage
check_posixt(
x,
lower = -Inf,
upper = Inf,
any_missing = TRUE,
null_ok = FALSE,
.names = deparse(substitute(x))
)
test_posixt(
x,
lower = -Inf,
upper = Inf,
any_missing = TRUE,
null_ok = FALSE,
.names = deparse(substitute(x))
)
assert_posixt(
x,
lower = -Inf,
upper = Inf,
any_missing = TRUE,
null_ok = FALSE,
.names = deparse(substitute(x)),
.var.name = checkmate::vname(x),
add = NULL
)
expect_posixt(
x,
lower = -Inf,
upper = Inf,
any_missing = TRUE,
null_ok = FALSE,
.names = deparse(substitute(x)),
info = NULL,
label = checkmate::vname(x)
)
Arguments
- x
Any R object.
- lower
(Optional) A value of the same class as
x
indicating the minimum value ofx
(Default:-Inf
).- upper
(Optional) A value of the same class as
x
indicating the maximum value ofx
(Default:Inf
).- any_missing
(Optional) A
logical
flag indicating if missing values are allowed (Default:TRUE
).- null_ok
(Optional) A
logical
flag indicating ifNULL
values are allowed (Default:FALSE
).- .names
(Optional) A
character
vector specifying the names of the objects being tested. This argument is used internally and should not be set by the user.- .var.name
(Optional) A
character
string indicating the name of the checked object to print in assertions. This argument is used internally and should not be set by the user.- add
(Optional) A
AssertCollection
object indicating the collection to store assertion messages. This argument is used internally and should not be set by the user.- info
(Optional) A
character
string with extra information to be included in the message for the `testthat“ reporter. This argument is used internally and should not be set by the user.- label
(Optional) A
character
string indicating the name of the checked object to print in messages. This argument is used internally and should not be set by the user.
Value
test_*
:TRUE
if it passes the test;FALSE
otherwise.check_*
:TRUE
if it passes the test; a string with a message otherwise.assertion_*
: The same input (as invisible) if it passes the test; an error message otherwise.expect_*
: The same input (as invisible) if it passes the test; an error message otherwise.
Examples
test_posixt(1)
#> [1] FALSE
#> [1] FALSE # Expected
test_posixt(hms::as_hms("01:02:03"))
#> [1] FALSE
#> [1] FALSE # Expected
test_posixt(Sys.time())
#> [1] TRUE
#> [1] TRUE # Expected
test_posixt(Sys.time(), lower = Sys.time() + lubridate::dhours(1))
#> [1] FALSE
#> [1] FALSE # Expected
test_posixt(Sys.time(), upper = Sys.time() - lubridate::dhours(1))
#> [1] FALSE
#> [1] FALSE # Expected
test_posixt(c(Sys.time(), NA), any_missing = FALSE)
#> [1] FALSE
#> [1] FALSE # Expected
test_posixt(NULL, null_ok = FALSE)
#> [1] FALSE
#> [1] FALSE # Expected