tests/testthat/test_dir/test-failures.R

test_that("just one failure", {
  expect_true(FALSE)
})

test_that("one failure on two", {
  expect_false(FALSE)
  expect_true(FALSE)
})

test_that("no failure", {
  expect_false(FALSE)
  expect_true(TRUE)
})

Try the testthat package in your browser

Any scripts or data that you put into this service are public.

testthat documentation built on Oct. 6, 2023, 5:10 p.m.