forked from d99kris/rapidcsv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test049.cpp
43 lines (34 loc) · 1.16 KB
/
test049.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
// test049.cpp - default conversion to custom values
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csv =
"-,A,B,C\n"
"1,,x,#\n"
"2,,y,$\n"
;
std::string path = unittest::TempPath();
unittest::WriteFile(path, csv);
try
{
rapidcsv::Document doc(path, rapidcsv::LabelParams(0, 0), rapidcsv::SeparatorParams(),
rapidcsv::ConverterParams(true /* pHasDefaultConverter */,
0.0 /* pDefaultFloat */,
1 /* pDefaultInteger */));
unittest::ExpectEqual(int, doc.GetCell<int>(0, 0), 1);
unittest::ExpectEqual(long long, doc.GetCell<long long>(1, 0), 1);
unittest::ExpectEqual(unsigned int, doc.GetCell<unsigned int>(2, 0), 1);
unittest::ExpectEqual(double, doc.GetCell<double>(0, 1), 0.0);
unittest::ExpectEqual(long double, doc.GetCell<long double>(1, 1), 0.0);
unittest::ExpectEqual(float, doc.GetCell<float>(2, 1), 0.0);
}
catch (const std::exception& ex)
{
std::cout << ex.what() << std::endl;
rv = 1;
}
unittest::DeleteFile(path);
return rv;
}