dwww Home | Show directory contents | Find package

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)
})

Generated by dwww version 1.15 on Sun May 19 04:49:18 CEST 2024.