This commit is contained in:
2024-06-03 10:05:35 -05:00
parent 087f132a32
commit d305ed01ac
14 changed files with 22 additions and 27 deletions

View File

@@ -1,7 +1,5 @@
#include "dtl_test_common.hpp"
#include "comparators.hpp"
class Objdifftest : public ::testing::Test {
protected:
dtl_test_typedefs(string, vector<elem>) typedef struct case_t {

View File

@@ -1,7 +1,5 @@
#include "dtl_test_common.hpp"
#include "comparators.hpp"
class Strdiff3test : public ::testing::Test {
protected:
dtl_test_typedefs(char, string) typedef struct case_t {

View File

@@ -1,7 +1,5 @@
#include "dtl_test_common.hpp"
#include "comparators.hpp"
class Strdifftest : public ::testing::Test {
protected:
dtl_test_typedefs(char, string) typedef struct case_t {

View File

@@ -1,7 +1,7 @@
#ifndef DTL_COMPARATORS
#define DTL_COMPARATORS
#include "functors.hpp"
#include "dtl/functors.hpp"
class CaseInsensitive : public dtl::Compare<char> {
public:

View File

@@ -3,7 +3,9 @@
#include <gtest/gtest.h>
#include "dtl.hpp"
#include "dtl/dtl.hpp"
#include "comparators.hpp"
using std::cerr;
using std::endl;