Storing test data
The best location is somewhere below tests/testthat/
.
.
├── ...
└── tests
├── testthat
│ ├── fixtures
│ │ ├── make-useful-things.R
│ │ ├── useful_thing1.rds
│ │ └── useful_thing2.rds
│ ├── helper.R
│ ├── setup.R
│ └── (all the test files)
└── testthat.R
To find the correct path in interactive and automated testing use
testthat::test_path()
.