checkFunction(x, args = NULL, ordered = FALSE, nargs = NULL)assertFunction(x, args = NULL, ordered = FALSE, nargs = NULL,
add = NULL, .var.name = NULL)
assert_function(x, args = NULL, ordered = FALSE, nargs = NULL,
add = NULL, .var.name = NULL)
testFunction(x, args = NULL, ordered = FALSE, nargs = NULL)
test_function(x, args = NULL, ordered = FALSE, nargs = NULL)
expect_function(x, args = NULL, ordered = FALSE, nargs = NULL,
info = NULL, label = NULL)
character
]
Expected formal arguments. Checks that a function has no arguments if
set to character(0)
.
Default is NULL
(no check).logical(1)
]
Flag whether the arguments provided in args
must be the first
length(args)
arguments of the function in the specified order.
Default is FALSE
.integer(1)
]
Required number of arguments, without ...
.
Default is NULL
(no check).AssertCollection
]
Collection to store assertions. See AssertCollection
.NULL
|| character(1)
]
Name of the checked object to print in error message. If NULL
,
the name will be heuristically determined via substitute
.expect_that
..var.name
, but passed down to expect_that
.TRUE
. If the check
is not successful, assertFunction
/assert_function
throws an error message, testFunction
/test_function
returns FALSE
,
and checkFunction
returns a string with the error message.
The function expect_function
always returns an
expectation
.checkArray
,
checkAtomicVector
,
checkAtomic
, checkCharacter
,
checkComplex
, checkDataFrame
,
checkDataTable
,
checkEnvironment
,
checkFactor
, checkIntegerish
,
checkInteger
, checkList
,
checkLogical
, checkMatrix
,
checkNumeric
, checkVector
testFunction(mean)
testFunction(mean, args = "x")
Run the code above in your browser using DataLab