Nothing
#' Check if an argument is an environment
#'
#' @templateVar fn Environment
#' @template x
#' @param contains [\code{character}]\cr
#' Vector of object names expected in the environment.
#' Defaults to \code{character(0)}.
#' @template null.ok
#' @template checker
#' @family basetypes
#' @export
#' @examples
#' ee = as.environment(list(a = 1))
#' testEnvironment(ee)
#' testEnvironment(ee, contains = "a")
checkEnvironment = function(x, contains = character(0L), null.ok = FALSE) {
qassert(contains, "S")
qassert(null.ok, "B1")
if (is.null(x)) {
if (null.ok)
return(TRUE)
return("Must be an environment, not 'NULL'")
}
if (!is.environment(x))
return(sprintf("Must be an environment%s, not '%s'", if (null.ok) " (or 'NULL')" else "", guessType(x)))
if (length(contains) > 0L) {
w = wf(contains %nin% ls(x, all.names = TRUE))
if (length(w) > 0L)
return(sprintf("Must contain an object with name '%s'", contains[w]))
}
return(TRUE)
}
#' @export
#' @rdname checkEnvironment
check_environment = checkEnvironment
#' @export
#' @include makeAssertion.R
#' @template assert
#' @rdname checkEnvironment
assertEnvironment = makeAssertionFunction(checkEnvironment, use.namespace = FALSE)
#' @export
#' @rdname checkEnvironment
assert_environment = assertEnvironment
#' @export
#' @include makeTest.R
#' @rdname checkEnvironment
testEnvironment = makeTestFunction(checkEnvironment)
#' @export
#' @rdname checkEnvironment
test_environment = testEnvironment
#' @export
#' @include makeExpectation.R
#' @template expect
#' @rdname checkEnvironment
expect_environment = makeExpectationFunction(checkEnvironment, 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.