2012-05-19 18:46:38 +09:00
|
|
|
#ifndef TESTSPR_SPROUT_CPP
|
|
|
|
#define TESTSPR_SPROUT_CPP
|
2011-12-23 20:59:33 +09:00
|
|
|
|
2012-05-19 18:46:38 +09:00
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_CPP_INCLUDE_DISABLE_TESTSPR_SPROUT_HPP
|
|
|
|
# define TESTSPR_CPP_INCLUDE
|
|
|
|
#endif
|
2011-12-23 20:59:33 +09:00
|
|
|
|
2012-05-19 18:46:38 +09:00
|
|
|
#include "../libs/array/test/array.cpp"
|
|
|
|
#include "../libs/string/test/string.cpp"
|
2012-06-18 16:43:48 +09:00
|
|
|
#include "../libs/bitset/test/bitset.cpp"
|
2012-10-28 01:04:13 +09:00
|
|
|
#include "../libs/tuple/test/tuple.cpp"
|
2012-10-27 15:37:39 +09:00
|
|
|
#include "../libs/optional/test/optional.cpp"
|
2012-10-28 16:18:40 +09:00
|
|
|
#include "../libs/variant/test/variant.cpp"
|
2012-05-19 18:46:38 +09: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 16:43:48 +09:00
|
|
|
testspr::bitset_test();
|
2012-10-28 01:04:13 +09:00
|
|
|
testspr::tuple_test();
|
2012-10-27 15:37:39 +09:00
|
|
|
testspr::optional_test();
|
2012-10-28 16:18:40 +09:00
|
|
|
testspr::variant_test();
|
2012-05-19 18:46:38 +09: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
|