Add include tests

This commit is contained in:
Sebastian Meßmer 2015-10-18 01:09:49 +02:00
parent 8b429bac9a
commit d629e14533
22 changed files with 66 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#define MESSMER_CPPUTILS_EITHER_H #define MESSMER_CPPUTILS_EITHER_H
#include <boost/optional.hpp> #include <boost/optional.hpp>
#include <iostream>
namespace cpputils { namespace cpputils {

View File

@ -0,0 +1,3 @@
#include "../either.h"
//Test that either can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../macros.h"
// Test that macros.h can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../assert/assert.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,4 @@
#include "../../assert/backtrace.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,4 @@
#include "../../daemon/daemonize.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../data/DataFixture.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../data/Data.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../data/FixedSizeData.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../io/Console.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../lock/ConditionBarrier.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../lock/LockPool.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../lock/MutexPoolLock.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../logging/Logger.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../logging/logging.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../pointer/cast.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../pointer/optional_ownership_ptr.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../pointer/unique_ref_boost_optional_gtest_workaround.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../pointer/unique_ref.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../random/RandomPool.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../tempfile/TempDir.h"
// Test the header can be included without needing additional dependencies

View File

@ -0,0 +1,3 @@
#include "../../tempfile/TempFile.h"
// Test the header can be included without needing additional dependencies