-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathtest019.cpp
More file actions
49 lines (37 loc) · 791 Bytes
/
Copy pathtest019.cpp
File metadata and controls
49 lines (37 loc) · 791 Bytes
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
// test019.cpp - delete rows, no row labels
#include <rapidcsv.h>
#include "unittest.h"
int main()
{
int rv = 0;
std::string csvref =
"A,B,C,D\n"
"3,9,81,6561\n"
"4,16,256,65536\n"
;
std::string csv =
"A,B,C,D\n"
"2,4,16,256\n"
"3,9,81,6561\n"
"4,16,256,65536\n"
"5,25,625,390625\n"
;
std::string path = unittest::TempPath();
unittest::WriteFile(path, csv);
try
{
rapidcsv::Document doc(path);
doc.RemoveRow(3);
doc.RemoveRow(0);
doc.Save();
std::string csvread = unittest::ReadFile(path);
unittest::ExpectEqual(std::string, csvref, csvread);
}
catch (const std::exception& ex)
{
std::cout << "exception: " << ex.what() << std::endl;
rv = 1;
}
unittest::DeleteFile(path);
return rv;
}