Sprout/testspr/sprout.cpp
bolero-MURAKAMI 0ceabb5b9b move textspr/sprout/* -> libs/<libname>/test/*
fix binomial_distribution
2012-05-19 18:46:38 +09:00

32 lines
815 B
C++

#ifndef TESTSPR_SPROUT_CPP
#define TESTSPR_SPROUT_CPP
#ifndef TESTSPR_CPP_INCLUDE
# define TESTSPR_CPP_INCLUDE_DISABLE_TESTSPR_SPROUT_HPP
# define TESTSPR_CPP_INCLUDE
#endif
#include "../libs/array/test/array.cpp"
#include "../libs/string/test/string.cpp"
#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();
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