Sprout/libs/random/test/uniform_01.cpp

22 lines
602 B
C++
Raw Normal View History

#ifndef SPROUT_LIBS_RANDOM_TEST_UNIFORM_01_CPP
#define SPROUT_LIBS_RANDOM_TEST_UNIFORM_01_CPP
#include <sprout/random/uniform_01.hpp>
#include "./distribution_generic.hpp"
#include <testspr/tools.hpp>
namespace testspr {
void random_uniform_01_test() {
using namespace sprout;
testspr::random_distribution_test_generic<sprout::random::uniform_01<> >();
}
} // namespace testspr
#ifndef TESTSPR_CPP_INCLUDE
# define TESTSPR_TEST_FUNCTION testspr::random_uniform_01_test
# include <testspr/include_main.hpp>
#endif
#endif // #ifndef SPROUT_LIBS_RANDOM_TEST_UNIFORM_01_CPP