mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 09:57:41 +00:00
16 lines
362 B
C++
16 lines
362 B
C++
|
#include <boost/algorithm/string.hpp>
|
||
|
#include <gtest/gtest.h>
|
||
|
#include <string>
|
||
|
#include <vector>
|
||
|
|
||
|
std::string nodiff(std::string text) {
|
||
|
std::vector<std::string> lines;
|
||
|
boost::split(lines, text, boost::is_any_of("\n"));
|
||
|
using namespace testing::internal;
|
||
|
return (edit_distance::CreateUnifiedDiff(lines, lines));
|
||
|
}
|
||
|
|
||
|
int main() {
|
||
|
return 0;
|
||
|
}
|