-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathtest042.cpp
More file actions
50 lines (41 loc) · 1.19 KB
/
Copy pathtest042.cpp
File metadata and controls
50 lines (41 loc) · 1.19 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
40
41
42
43
44
45
46
47
48
49
50
// test042.cpp - test GetColumnCount() and GetRowCount()
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csv1 =
"-,A,B,C\n"
"1,3,9,81\n"
"2,4,16,256\n"
;
std::string path = unittest::TempPath();
unittest::WriteFile(path, csv1);
try
{
rapidcsv::Document doc1(path, rapidcsv::LabelParams(0, 0));
unittest::ExpectEqual(size_t, doc1.GetColumnCount(), 3);
unittest::ExpectEqual(size_t, doc1.GetRowCount(), 2);
rapidcsv::Document doc2(path, rapidcsv::LabelParams(-1, -1));
unittest::ExpectEqual(size_t, doc2.GetColumnCount(), 4);
unittest::ExpectEqual(size_t, doc2.GetRowCount(), 3);
// test column count when column labels after first row
std::string csv2 =
"Sep=,\n"
"-,A,B,C\n"
"1,3,9,81\n"
"2,4,16,256\n"
;
std::istringstream sstream2(csv2);
rapidcsv::Document doc3(sstream2, rapidcsv::LabelParams(1, -1));
unittest::ExpectEqual(size_t, doc3.GetColumnCount(), 4);
unittest::ExpectEqual(size_t, doc3.GetRowCount(), 2);
}
catch (const std::exception& ex)
{
std::cout << "exception: " << ex.what() << std::endl;
rv = 1;
}
unittest::DeleteFile(path);
return rv;
}