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
b
## [1] 11
Code Chunk Reproduction Report

⚠ Warning: Current code chunk fingerprint and stored code chunk fingerprint mismatch. Likely, the code chunk was modified after reproduction data was stored the first time.

  • ✅a: REPRODUCTION SUCCESSFUL

  • ✅b: REPRODUCTION SUCCESSFUL

Test 2: Echo = FALSE

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

## [1] 12
Code Chunk Reproduction Report

⚠ Warning: Current code chunk fingerprint and stored code chunk fingerprint mismatch. Likely, the code chunk was modified after reproduction data was stored the first time.

  • ✅summe: REPRODUCTION SUCCESSFUL

Test 3: echo = false and report = FALSE

This is supposed to only show the result (12)

## [1] 12

Test 4: Eval = FALSE

This is supposed to only show the code

summe3 <- a + b
summe3

Test 1: Default options

This is supposed to show code, results and report:

a <- 1
b <- a + 10
b

[1] 11