Check if an argument is NULL
Arguments
- x
[
any]
Object to check.- .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.
Value
Depending on the function prefix:
If the check is successful, the functions
assertNull/assert_null return
x invisibly, whereas
checkNull/check_null and
testNull/test_null return
TRUE.
If the check is not successful,
assertNull/assert_null
throws an error message,
testNull/test_null
returns FALSE,
and checkNull/check_null
return a string with the error message.
The function expect_null always returns an
expectation.
See also
Other basetypes:
checkArray(),
checkAtomic(),
checkAtomicVector(),
checkCharacter(),
checkComplex(),
checkDataFrame(),
checkDate(),
checkDouble(),
checkEnvironment(),
checkFactor(),
checkFormula(),
checkFunction(),
checkInteger(),
checkIntegerish(),
checkList(),
checkLogical(),
checkMatrix(),
checkNumeric(),
checkPOSIXct(),
checkRaw(),
checkVector()