DEBSOURCES
Skip Quicknav
sources / r-cran-tinytest / 1.4.1-1 / vignettes / test_addOne.R
12345678910
# contents of test_addOne.R addOne <- function(x) x + 2 expect_true(addOne(0) > 0) hihi <- 1 expect_equal(addOne(hihi), 2)