Nothing
#' Check if an argument is NULL
#'
#' @templateVar fn Null
#' @template x
#' @template checker
#' @family basetypes
#' @export
#' @examples
#' testNull(NULL)
#' testNull(1)
checkNull = function(x) {
if (!is.null(x))
return("Must be NULL")
return(TRUE)
}
#' @export
#' @rdname checkNull
check_null = checkNull
#' @export
#' @include makeAssertion.R
#' @template assert
#' @rdname checkNull
assertNull = makeAssertionFunction(checkNull, use.namespace = FALSE)
#' @export
#' @rdname checkNull
assert_null = assertNull
#' @export
#' @include makeTest.R
#' @rdname checkNull
testNull = makeTestFunction(checkNull)
#' @export
#' @rdname checkNull
test_null = testNull
# This function is already provided by testthat
# #' @export
# #' @include makeExpectation.R
# #' @template expect
# #' @rdname checkNull
expect_null = makeExpectationFunction(checkNull, use.namespace = FALSE)
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.