52 lines
836 B
C++
52 lines
836 B
C++
|
// test007.cpp - delete columns
|
||
|
|
||
|
#include <rapidcsv.h>
|
||
|
#include "unittest.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int rv = 0;
|
||
|
|
||
|
std::string csvref =
|
||
|
"-,B,D\n"
|
||
|
"0,4,256\n"
|
||
|
"1,9,6561\n"
|
||
|
"2,16,65536\n"
|
||
|
"3,25,390625\n"
|
||
|
;
|
||
|
|
||
|
std::string csv =
|
||
|
"-,A,B,C,D\n"
|
||
|
"0,2,4,16,256\n"
|
||
|
"1,3,9,81,6561\n"
|
||
|
"2,4,16,256,65536\n"
|
||
|
"3,5,25,625,390625\n"
|
||
|
;
|
||
|
|
||
|
std::string path = unittest::TempPath();
|
||
|
unittest::WriteFile(path, csv);
|
||
|
|
||
|
try
|
||
|
{
|
||
|
rapidcsv::Document doc(path, rapidcsv::LabelParams(0, 0));
|
||
|
|
||
|
doc.RemoveColumn("C");
|
||
|
doc.RemoveColumn(0);
|
||
|
|
||
|
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;
|
||
|
}
|