-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathtest061.cpp
More file actions
39 lines (31 loc) · 1.03 KB
/
Copy pathtest061.cpp
File metadata and controls
39 lines (31 loc) · 1.03 KB
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
// test061.cpp - read trimmed cell values
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csv =
"-, A,B , C \n"
" 1,3 , 9 , 81\n"
"2 ,4 , 16, 256 \n"
;
std::string path = unittest::TempPath();
unittest::WriteFile(path, csv);
try
{
rapidcsv::Document doc(path, rapidcsv::LabelParams(0, 0), rapidcsv::SeparatorParams(',', true));
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("A", "1"), "3");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("B", "1"), "9");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("C", "1"), "81");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("A", "2"), "4");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("B", "2"), "16");
unittest::ExpectEqual(std::string, doc.GetCell<std::string>("C", "2"), "256");
}
catch (const std::exception& ex)
{
std::cout << "exception: " << ex.what() << std::endl;
rv = 1;
}
unittest::DeleteFile(path);
return rv;
}