dwww Home | Show directory contents | Find package

expect_equal(2, 2)
expect_true(TRUE)
expect_error(stop("!"))

stopifnot(
  tryCatch(
    expect_true(TRUE),
    expectation_failure = function(e) FALSE
  )
)
stopifnot(
  tryCatch(
    expect_true(FALSE),
    expectation_failure = function(e) TRUE
  )
)

Generated by dwww version 1.15 on Sun May 19 05:21:38 CEST 2024.