58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
|
// test075.cpp - generate new document by column labels
|
||
|
|
||
|
#include <rapidcsv.h>
|
||
|
#include "unittest.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int rv = 0;
|
||
|
|
||
|
std::string csvref =
|
||
|
",A,B,C,D\n"
|
||
|
"0,2,4,16,256\n"
|
||
|
"1,3,9,81,6561\n"
|
||
|
"2,4,16,256,65536\n"
|
||
|
"3,5,25,625,390625\n"
|
||
|
;
|
||
|
|
||
|
std::string path = unittest::TempPath();
|
||
|
|
||
|
try
|
||
|
{
|
||
|
rapidcsv::Document doc("", rapidcsv::LabelParams(0, 0), rapidcsv::SeparatorParams(',', false, false));
|
||
|
|
||
|
doc.SetColumnName(0, "A");
|
||
|
doc.SetColumnName(1, "B");
|
||
|
doc.SetColumnName(2, "C");
|
||
|
doc.SetColumnName(3, "D");
|
||
|
|
||
|
doc.SetColumn<int>(0, std::vector<int>({ 2, 3 }));
|
||
|
doc.SetColumn<int>(1, std::vector<int>({ 4, 9, 16, 25 }));
|
||
|
doc.SetColumn<int>(2, std::vector<int>({ 16, 81, 256, 625 }));
|
||
|
doc.SetColumn<int>(3, std::vector<int>({ 256, 6561, 65536, 390625 }));
|
||
|
|
||
|
doc.SetCell<int>(0, 2, 4);
|
||
|
doc.SetCell<int>(0, 3, 5);
|
||
|
|
||
|
doc.SetRowName(0, "0");
|
||
|
doc.SetRowName(1, "1");
|
||
|
doc.SetRowName(2, "2");
|
||
|
doc.SetRowName(3, "3");
|
||
|
|
||
|
doc.Save(path);
|
||
|
|
||
|
std::string csvread = unittest::ReadFile(path);
|
||
|
|
||
|
unittest::ExpectEqual(std::string, csvref, csvread);
|
||
|
}
|
||
|
catch (const std::exception& ex)
|
||
|
{
|
||
|
std::cout << ex.what() << std::endl;
|
||
|
rv = 1;
|
||
|
}
|
||
|
|
||
|
unittest::DeleteFile(path);
|
||
|
|
||
|
return rv;
|
||
|
}
|