Skip to content

Commit b2e2959

Browse files
committed
r12 | charles.nicholson | 2010-03-17 18:59:25 -0500 (Wed, 17 Mar 2010) | 1 line
move unittestpp.h and config.h to top-level folder, to allow 'include unittestpp/unittestpp.h' directives in client code
1 parent eebfcb4 commit b2e2959

38 files changed

+51
-58
lines changed

src/Config.h renamed to config.h

File renamed without changes.

src/AssertException.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#ifndef UNITTEST_ASSERTEXCEPTION_H
22
#define UNITTEST_ASSERTEXCEPTION_H
33

4-
#include "Config.h"
5-
4+
#include "../config.h"
65
#ifdef UNITTEST_USE_EXCEPTIONS
76

87
#include <exception>

src/Checks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef UNITTEST_CHECKS_H
22
#define UNITTEST_CHECKS_H
33

4-
#include "Config.h"
4+
#include "../config.h"
55
#include "TestResults.h"
66
#include "MemoryOutStream.h"
77

src/DeferredTestReporter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Config.h"
1+
#include "../config.h"
22
#ifdef UNITTEST_USE_DEFERRED_REPORTER
33

44
#include "DeferredTestReporter.h"

src/DeferredTestReporter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef UNITTEST_DEFERREDTESTREPORTER_H
22
#define UNITTEST_DEFERREDTESTREPORTER_H
33

4-
#include "Config.h"
4+
#include "../config.h"
55

66
#ifdef UNITTEST_USE_DEFERRED_REPORTER
77

src/DeferredTestResult.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include "Config.h"
1+
#include "../config.h"
22
#ifdef UNITTEST_USE_DEFERRED_REPORTER
33

44
#include "DeferredTestResult.h"

src/DeferredTestResult.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#ifndef UNITTEST_DEFERREDTESTRESULT_H
22
#define UNITTEST_DEFERREDTESTRESULT_H
33

4-
#include "Config.h"
5-
4+
#include "../config.h"
65
#ifdef UNITTEST_USE_DEFERRED_REPORTER
76

87
#include <string>

src/ExceptionMacros.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef UNITTEST_EXCEPTIONMACROS_H
22
#define UNITTEST_EXCEPTIONMACROS_H
33

4-
#include "Config.h"
4+
#include "../config.h"
55

66
#ifdef UNITTEST_USE_EXCEPTIONS
77
#define UT_TRY(x) try x

src/ExecuteTest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef UNITTEST_EXECUTE_TEST_H
22
#define UNITTEST_EXECUTE_TEST_H
33

4-
#include "Config.h"
4+
#include "../config.h"
55
#include "ExceptionMacros.h"
66
#include "TestDetails.h"
77
#include "TestResults.h"

src/MemoryOutStream.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#ifndef UNITTEST_MEMORYOUTSTREAM_H
22
#define UNITTEST_MEMORYOUTSTREAM_H
33

4-
#include "Config.h"
5-
4+
#include "../config.h"
65
#ifndef UNITTEST_USE_CUSTOM_STREAMS
76

87
#include <sstream>

0 commit comments

Comments
 (0)