blob: 151abeb9aa70bdf2142a23346295e560710d9d22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "helpers.h"
#include <algorithm>
#include <boost/test/unit_test.hpp>
#include <cctype>
#include <fstream>
#include <iterator>
#include <string>
void
diff(const std::filesystem::path & left, const std::filesystem::path & right)
{
std::ifstream fl(left.string());
std::ifstream fr(right.string());
std::string l, r;
std::copy_if(std::istreambuf_iterator<char>(fl), std::istreambuf_iterator<char>(), back_inserter(l), [](char x) {
return !isspace(x);
});
std::copy_if(std::istreambuf_iterator<char>(fr), std::istreambuf_iterator<char>(), back_inserter(r), [](char x) {
return !isspace(x);
});
BOOST_REQUIRE_EQUAL(l, r);
}
|