2012-12-09 05:34:14 +00:00
|
|
|
#ifndef SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|
|
|
|
#define SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|
|
|
|
|
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_CPP_INCLUDE_DISABLE_SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|
|
|
|
# define TESTSPR_CPP_INCLUDE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "./all_of.cpp"
|
|
|
|
#include "./any_of.cpp"
|
|
|
|
#include "./none_of.cpp"
|
|
|
|
#include "./one_of.cpp"
|
|
|
|
#include "./find.cpp"
|
|
|
|
#include "./find_if.cpp"
|
|
|
|
#include "./find_if_not.cpp"
|
2012-12-11 03:59:36 +00:00
|
|
|
#include "./find_end.cpp"
|
|
|
|
#include "./find_first_of.cpp"
|
|
|
|
#include "./adjacent_find.cpp"
|
2012-12-09 05:34:14 +00:00
|
|
|
|
|
|
|
#ifdef TESTSPR_CPP_INCLUDE_DISABLE_SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|
|
|
|
# undef TESTSPR_CPP_INCLUDE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace testspr {
|
|
|
|
static void algorithm_non_modifying_test() {
|
|
|
|
testspr::algorithm_all_of_test();
|
|
|
|
testspr::algorithm_any_of_test();
|
|
|
|
testspr::algorithm_none_of_test();
|
|
|
|
testspr::algorithm_one_of_test();
|
|
|
|
testspr::algorithm_find_test();
|
|
|
|
testspr::algorithm_find_if_test();
|
|
|
|
testspr::algorithm_find_if_not_test();
|
2012-12-11 03:59:36 +00:00
|
|
|
testspr::algorithm_find_end_test();
|
|
|
|
testspr::algorithm_find_first_of_test();
|
|
|
|
testspr::algorithm_adjacent_find_test();
|
2012-12-09 05:34:14 +00:00
|
|
|
}
|
|
|
|
} // namespace testspr
|
|
|
|
|
|
|
|
#ifndef TESTSPR_CPP_INCLUDE
|
|
|
|
# define TESTSPR_TEST_FUNCTION testspr::algorithm_non_modifying_test
|
|
|
|
# include <testspr/include_main.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_LIBS_ALGORITHM_TEST_NON_MODIFYIING_CPP
|