add some algorithm test

This commit is contained in:
bolero-MURAKAMI 2012-12-17 00:51:10 +09:00
parent bc04943aaa
commit 570b834367
10 changed files with 255 additions and 0 deletions

View file

@ -45,6 +45,11 @@
#include "./any_of_equal.cpp"
#include "./none_of_equal.cpp"
#include "./one_of_equal.cpp"
#include "./is_increasing.cpp"
#include "./is_decreasing.cpp"
#include "./is_strictly_increasing.cpp"
#include "./is_strictly_decreasing.cpp"
#include "./clamp.cpp"
#ifdef TESTSPR_CPP_INCLUDE_DISABLE_SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
# undef TESTSPR_CPP_INCLUDE
@ -91,6 +96,11 @@ namespace testspr {
testspr::algorithm_any_of_equal_test();
testspr::algorithm_none_of_equal_test();
testspr::algorithm_one_of_equal_test();
testspr::algorithm_is_increasing_test();
testspr::algorithm_is_decreasing_test();
testspr::algorithm_is_strictly_increasing_test();
testspr::algorithm_is_strictly_decreasing_test();
testspr::algorithm_clamp_test();
}
} // namespace testspr