-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathtest024.cpp
58 lines (43 loc) · 1.27 KB
/
test024.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
// test024.cpp - set cell value, 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.SetCell<int>(0, 0, 3);
doc.SetCell<int>(1, 0, 9);
doc.SetCell<int>(2, 0, 81);
doc.SetCell<std::string>(0, 1, "4");
doc.SetCell<std::string>(1, 1, "16");
doc.SetCell<std::string>(2, 1, "256");
unittest::ExpectEqual(int, doc.GetCell<int>(0, 0), 3);
unittest::ExpectEqual(int, doc.GetCell<int>(1, 0), 9);
unittest::ExpectEqual(int, doc.GetCell<int>(2, 0), 81);
unittest::ExpectEqual(std::string, doc.GetCell<std::string>(0, 1), "4");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>(1, 1), "16");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>(2, 1), "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;
}