Wrapper to simplify notation in tests.
Accepts data suitable for representation as CSV
- either as an std::initializer_list<string> for pre-formatted rows
- or as a sequence of strings (words) to form a single header line
- or a list of strings for the header, and then a list of data tuples, which will be rendered into data rows in CSV format Since this wrapper is-a
vector<string>, the rows can be retrieved directly and then rendered, or the operator string() can be used to retrieve the complete data set in a single string of data lines.
Definition at line 140 of file csv.hpp.