2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
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"
|
2016-03-29 09:02:51 +00:00
|
|
|
#include "../libs/utility/string_view/test/string_view.cpp"
|
2013-01-12 16:49:11 +00:00
|
|
|
#include "../libs/cstring/test/cstring.cpp"
|
2014-03-26 02:57:33 +00:00
|
|
|
#include "../libs/net/test/endian.cpp"
|
2012-05-19 09:46:38 +00:00
|
|
|
|
|
|
|
#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();
|
2016-03-29 09:02:51 +00:00
|
|
|
testspr::string_view_test();
|
2013-01-12 16:49:11 +00:00
|
|
|
testspr::cstring_test();
|
2014-03-26 02:57:33 +00:00
|
|
|
testspr::endian_test();
|
2012-05-19 09:46:38 +00:00
|
|
|
}
|
|
|
|
} // namespace testspr
|
|
|
|
|
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_TEST_FUNCTION testspr::sprout_test
|
|
|
|
# include <testspr/include_main.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef TESTSPR_SPROUT_CPP
|