-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathtest028.cpp
60 lines (45 loc) · 1.33 KB
/
test028.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// test028.cpp - set row values, no row/column labels
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csvref =
"3,9,81\n"
"4,16,256\n"
;
std::string csv =
"0,0,0\n"
"0,0,0\n"
;
std::string path = unittest::TempPath();
unittest::WriteFile(path, csv);
try
{
rapidcsv::Document doc(path, rapidcsv::LabelParams(-1, -1));
doc.SetRow<int>(0, std::vector<int>({ 3, 9, 81 }));
doc.SetRow<std::string>(1, std::vector<std::string>({ "4", "16", "256" }));
std::vector<int> ints;
std::vector<std::string> strs;
ints = doc.GetRow<int>(0);
unittest::ExpectEqual(size_t, ints.size(), 3);
unittest::ExpectEqual(int, ints.at(0), 3);
unittest::ExpectEqual(int, ints.at(1), 9);
unittest::ExpectEqual(int, ints.at(2), 81);
strs = doc.GetRow<std::string>(1);
unittest::ExpectEqual(size_t, strs.size(), 3);
unittest::ExpectEqual(std::string, strs.at(0), "4");
unittest::ExpectEqual(std::string, strs.at(1), "16");
unittest::ExpectEqual(std::string, strs.at(2), "256");
doc.Save();
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;
}