Warning, /acts/Tests/Data/README.md is written in an unsupported language. File is not indexed.
0001 # Small test data files
0002
0003 **WARNING** All test files must be below 64kb in size.
0004
0005 This folder contains small test files, e.g. input data or comparison
0006 references, for various parts of the test suite. These files should be
0007 kept as small as possible. Access should always occur via the `getDataPath`
0008 helper functions from the `CommonHelpers` package:
0009
0010 ```cpp
0011 #include "Acts/Tests/CommonHelpers/DataDirectory.hpp"
0012
0013 ...
0014 auto path = Acts::Test::getDataPath("some-data-file.csv");
0015 ```