2012-05-19 09:46:38 +00:00
|
|
|
#ifndef TESTSPR_SPROUT_CPP
|
|
|
|
#define TESTSPR_SPROUT_CPP
|
2011-12-23 11:59:33 +00:00
|
|
|
|
2012-05-19 09:46:38 +00:00
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_CPP_INCLUDE_DISABLE_TESTSPR_SPROUT_HPP
|
|
|
|
# define TESTSPR_CPP_INCLUDE
|
|
|
|
#endif
|
2011-12-23 11:59:33 +00:00
|
|
|
|
2012-05-19 09:46:38 +00:00
|
|
|
#include "../libs/array/test/array.cpp"
|
|
|
|
#include "../libs/string/test/string.cpp"
|
2012-06-18 07:43:48 +00:00
|
|
|
#include "../libs/bitset/test/bitset.cpp"
|
2012-10-27 16:04:13 +00:00
|
|
|
#include "../libs/tuple/test/tuple.cpp"
|
2012-10-27 06:37:39 +00:00
|
|
|
#include "../libs/optional/test/optional.cpp"
|
2012-10-28 07:18:40 +00:00
|
|
|
#include "../libs/variant/test/variant.cpp"
|
2012-05-19 09:46:38 +00:00
|
|
|
#include "../libs/algorithm/test/algorithm.cpp"
|
|
|
|
#include "../libs/random/test/random.cpp"
|
|
|
|
|
|
|
|
#ifdef TESTSPR_CPP_INCLUDE_DISABLE_TESTSPR_SPROUT_HPP
|
|
|
|
# undef TESTSPR_CPP_INCLUDE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace testspr {
|
|
|
|
static void sprout_test() {
|
|
|
|
testspr::array_test();
|
|
|
|
testspr::string_test();
|
2012-06-18 07:43:48 +00:00
|
|
|
testspr::bitset_test();
|
2012-10-27 16:04:13 +00:00
|
|
|
testspr::tuple_test();
|
2012-10-27 06:37:39 +00:00
|
|
|
testspr::optional_test();
|
2012-10-28 07:18:40 +00:00
|
|
|
testspr::variant_test();
|
2012-05-19 09:46:38 +00:00
|
|
|
testspr::algorithm_test();
|
|
|
|
testspr::random_test();
|
|
|
|
}
|
|
|
|
} // namespace testspr
|
|
|
|
|
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_TEST_FUNCTION testspr::sprout_test
|
|
|
|
# include <testspr/include_main.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef TESTSPR_SPROUT_CPP
|