dwww Home | Show directory contents | Find package

test_that("regular function `a` works as expected", {
  expect_equal(a(1), 1)
  expect_equal(a(2), 2)
  expect_equal(a(3), 2)
  expect_equal(a(4), 2)
  expect_equal(a(0), 1)
})

test_that("TestS4 class can be instantiated", {
  t1 <- TestS4() # nolint
})

test_that("TestS4 Methods can be evaluated", {
  t1 <- TestS4() # nolint

  show(t1)
  print(print2(t1))

  print(print2(t1, "hi"))
})

Generated by dwww version 1.15 on Tue Jul 2 08:52:56 CEST 2024.