mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-18 15:24:11 +00:00
add some algorithm test
This commit is contained in:
parent
bc04943aaa
commit
570b834367
10 changed files with 255 additions and 0 deletions
47
libs/algorithm/test/clamp.cpp
Normal file
47
libs/algorithm/test/clamp.cpp
Normal file
|
@ -0,0 +1,47 @@
|
|||
#ifndef SPROUT_LIBS_ALGORITHM_TEST_CLAMP_CPP
|
||||
#define SPROUT_LIBS_ALGORITHM_TEST_CLAMP_CPP
|
||||
|
||||
#include <sprout/algorithm/clamp.hpp>
|
||||
#include <sprout/array.hpp>
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
static void algorithm_clamp_test() {
|
||||
using namespace sprout;
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto arr1 = array<int, 2>{{4, 7}};
|
||||
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::clamp(
|
||||
0,
|
||||
arr1[0],
|
||||
arr1[1]
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[0]);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::clamp(
|
||||
10,
|
||||
arr1[0],
|
||||
arr1[1]
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == arr1[1]);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::clamp(
|
||||
5,
|
||||
arr1[0],
|
||||
arr1[1]
|
||||
);
|
||||
TESTSPR_BOTH_ASSERT(result == 5);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::algorithm_clamp_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_CLAMP_CPP
|
Loading…
Add table
Add a link
Reference in a new issue