#ifndef SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP #define SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP #include #include #include namespace testspr { static void algorithm_min_test() { using namespace sprout; { SPROUT_STATIC_CONSTEXPR auto arr1 = array{{-1, 1}}; { SPROUT_STATIC_CONSTEXPR auto result = sprout::min( arr1[0], arr1[1] ); TESTSPR_BOTH_ASSERT(result == arr1[0]); } { SPROUT_STATIC_CONSTEXPR auto result = sprout::min( arr1[1], arr1[0] ); TESTSPR_BOTH_ASSERT(result == arr1[0]); } { SPROUT_STATIC_CONSTEXPR auto result = sprout::min( arr1[0], arr1[1], testspr::less() ); TESTSPR_BOTH_ASSERT(result == arr1[0]); } { SPROUT_STATIC_CONSTEXPR auto result = sprout::min( arr1[1], arr1[0], testspr::less() ); TESTSPR_BOTH_ASSERT(result == arr1[0]); } } } } // namespace testspr #ifndef TESTSPR_CPP_INCLUDE # define TESTSPR_TEST_FUNCTION testspr::algorithm_min_test # include #endif #endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_MIN_CPP