Test Suite

This test suite is for manual testing of whether code chunk options work properly. We are testing the following chunk options:

Test 1: Default options

This is supposed to show code, results and report:

a <- 1
b <- a + 10

11

Code Chunk Reproduction Report
  • ✅ a: REPRODUCTION SUCCESSFUL

  • ✅ b: REPRODUCTION SUCCESSFUL

Test 2: Echo = FALSE

This is supposed to show results and report but not the code:

12

Code Chunk Reproduction Report
  • ✅ summe: REPRODUCTION SUCCESSFUL

Test 3: echo = false and report = FALSE

This is supposed to only show the result (12)

12

Test 4: Eval = FALSE

This is supposed to only show the code

summe3 <- a + b