summaryrefslogtreecommitdiffhomepage
path: root/tests/test-diff.cpp
blob: b6b703a9ba5f31793140472285bdef92070a3562 (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
25
26
27
28
#include <gtest/gtest.h>

#include <filesystem>
#include <string>
#include <system_error>

#include "libreichwein/file.h"

#include "diff.h"

namespace fs = std::filesystem;
using namespace Reichwein;

class DiffTest: public ::testing::Test
{
protected:
 DiffTest(){
 }

 ~DiffTest(){
 }
};

TEST_F(DiffTest, constructor)
{
 Diff diff{};
}