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

21 lines
494 B
C++

#ifndef TESTSPR_INCLUDE_MAIN_HPP
#define TESTSPR_INCLUDE_MAIN_HPP
#ifndef TESTSPR_CPP_INCLUDE
#ifndef TESTSPR_TEST_FUNCTION
# error undefined TESTSPR_TEST_FUNCTION
#endif
#include <iostream>
#include <sprout/preprocessor/stringize.hpp>
int main() {
std::cout << "testspr exec: " << SPROUT_PP_STRINGIZE(TESTSPR_TEST_FUNCTION) << std::endl;
TESTSPR_TEST_FUNCTION();
std::cout << "testspr succeeded." << std::endl;
}
#endif
#endif // #ifndef TESTSPR_INCLUDE_MAIN_HPP