Check if an argument is a function
Usage
checkFunction(x, args = NULL, ordered = FALSE, nargs = NULL, null.ok = FALSE)
check_function(x, args = NULL, ordered = FALSE, nargs = NULL, null.ok = FALSE)
assertFunction(
x,
args = NULL,
ordered = FALSE,
nargs = NULL,
null.ok = FALSE,
.var.name = vname(x),
add = NULL
)
assert_function(
x,
args = NULL,
ordered = FALSE,
nargs = NULL,
null.ok = FALSE,
.var.name = vname(x),
add = NULL
)
testFunction(x, args = NULL, ordered = FALSE, nargs = NULL, null.ok = FALSE)
test_function(x, args = NULL, ordered = FALSE, nargs = NULL, null.ok = FALSE)
expect_function(
x,
args = NULL,
ordered = FALSE,
nargs = NULL,
null.ok = FALSE,
info = NULL,
label = vname(x)
)
Arguments
- x
[any]
Object to check.- args
[
character
]
Expected formal arguments. Checks that a function has no arguments if set tocharacter(0)
. Default isNULL
(no check).- ordered
[
logical(1)
]
Flag whether the arguments provided inargs
must be the firstlength(args)
arguments of the function in the specified order. Default isFALSE
.- nargs
[
integer(1)
]
Required number of arguments, without...
. Default isNULL
(no check).- null.ok
[
logical(1)
]
If set toTRUE
,x
may also beNULL
. In this case only a type check ofx
is performed, all additional checks are disabled.- .var.name
[
character(1)
]
Name of the checked object to print in assertions. Defaults to the heuristic implemented invname
.- add
[
AssertCollection
]
Collection to store assertion messages. SeeAssertCollection
.- info
[
character(1)
]
Extra information to be included in the message for the testthat reporter. Seeexpect_that
.- label
[
character(1)
]
Name of the checked object to print in messages. Defaults to the heuristic implemented invname
.
Value
Depending on the function prefix:
If the check is successful, the functions
assertFunction
/assert_function
return
x
invisibly, whereas
checkFunction
/check_function
and
testFunction
/test_function
return
TRUE
.
If the check is not successful,
assertFunction
/assert_function
throws an error message,
testFunction
/test_function
returns FALSE
,
and checkFunction
/check_function
return a string with the error message.
The function expect_function
always returns an
expectation
.
See also
Other basetypes:
checkArray()
,
checkAtomic()
,
checkAtomicVector()
,
checkCharacter()
,
checkComplex()
,
checkDataFrame()
,
checkDate()
,
checkDouble()
,
checkEnvironment()
,
checkFactor()
,
checkFormula()
,
checkInteger()
,
checkIntegerish()
,
checkList()
,
checkLogical()
,
checkMatrix()
,
checkNull()
,
checkNumeric()
,
checkPOSIXct()
,
checkRaw()
,
checkVector()