1
2
3test_that("two failures", {
4  expect_true(FALSE)
5  expect_false(TRUE)
6})
7
8test_that("another failure", {
9  expect_true(FALSE)
10})
11