Add include tests
This commit is contained in:
parent
8b429bac9a
commit
d629e14533
1
either.h
1
either.h
@ -3,6 +3,7 @@
|
||||
#define MESSMER_CPPUTILS_EITHER_H
|
||||
|
||||
#include <boost/optional.hpp>
|
||||
#include <iostream>
|
||||
|
||||
namespace cpputils {
|
||||
|
||||
|
3
test/EitherIncludeTest.cpp
Normal file
3
test/EitherIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../either.h"
|
||||
|
||||
//Test that either can be included without needing additional dependencies
|
3
test/MacrosIncludeTest.cpp
Normal file
3
test/MacrosIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../macros.h"
|
||||
|
||||
// Test that macros.h can be included without needing additional dependencies
|
3
test/assert/assert_include_test.cpp
Normal file
3
test/assert/assert_include_test.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../assert/assert.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
4
test/assert/backtrace_include_test.cpp
Normal file
4
test/assert/backtrace_include_test.cpp
Normal file
@ -0,0 +1,4 @@
|
||||
#include "../../assert/backtrace.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
||||
|
4
test/daemon/daemonize_include_test.cpp
Normal file
4
test/daemon/daemonize_include_test.cpp
Normal file
@ -0,0 +1,4 @@
|
||||
#include "../../daemon/daemonize.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
||||
|
3
test/data/DataFixtureIncludeTest.cpp
Normal file
3
test/data/DataFixtureIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../data/DataFixture.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/data/DataIncludeTest.cpp
Normal file
3
test/data/DataIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../data/Data.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/data/FixedSizeDataIncludeTest.cpp
Normal file
3
test/data/FixedSizeDataIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../data/FixedSizeData.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/io/ConsoleIncludeTest.cpp
Normal file
3
test/io/ConsoleIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../io/Console.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/lock/ConditionBarrierIncludeTest.cpp
Normal file
3
test/lock/ConditionBarrierIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../lock/ConditionBarrier.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/lock/LockPoolIncludeTest.cpp
Normal file
3
test/lock/LockPoolIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../lock/LockPool.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/lock/MutexPoolLockIncludeTest.cpp
Normal file
3
test/lock/MutexPoolLockIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../lock/MutexPoolLock.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/logging/LoggerIncludeTest.cpp
Normal file
3
test/logging/LoggerIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../logging/Logger.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/logging/LoggingIncludeTest.cpp
Normal file
3
test/logging/LoggingIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../logging/logging.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/pointer/cast_include_test.cpp
Normal file
3
test/pointer/cast_include_test.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../pointer/cast.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/pointer/optional_ownership_ptr_include_test.cpp
Normal file
3
test/pointer/optional_ownership_ptr_include_test.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../pointer/optional_ownership_ptr.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
@ -0,0 +1,3 @@
|
||||
#include "../../pointer/unique_ref_boost_optional_gtest_workaround.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/pointer/unique_ref_include_test.cpp
Normal file
3
test/pointer/unique_ref_include_test.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../pointer/unique_ref.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/random/RandomPoolIncludeTest.cpp
Normal file
3
test/random/RandomPoolIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../random/RandomPool.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/tempfile/TempDirIncludeTest.cpp
Normal file
3
test/tempfile/TempDirIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../tempfile/TempDir.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
3
test/tempfile/TempFileIncludeTest.cpp
Normal file
3
test/tempfile/TempFileIncludeTest.cpp
Normal file
@ -0,0 +1,3 @@
|
||||
#include "../../tempfile/TempFile.h"
|
||||
|
||||
// Test the header can be included without needing additional dependencies
|
Loading…
Reference in New Issue
Block a user