mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
29 lines
777 B
C++
29 lines
777 B
C++
|
#ifndef SPROUT_LIBS_CSTRING_TEST_STRRCHR_CPP
|
||
|
#define SPROUT_LIBS_CSTRING_TEST_STRRCHR_CPP
|
||
|
|
||
|
#include <sprout/cstring/strrchr.hpp>
|
||
|
#include <sprout/iterator.hpp>
|
||
|
#include <testspr/tools.hpp>
|
||
|
|
||
|
namespace testspr {
|
||
|
static void cstring_strrchr_test() {
|
||
|
using namespace sprout;
|
||
|
{
|
||
|
SPROUT_STATIC_CONSTEXPR char str[] = "abcdefghijklmnabcdefghijklmn";
|
||
|
SPROUT_STATIC_CONSTEXPR char c = 'd';
|
||
|
|
||
|
{
|
||
|
SPROUT_STATIC_CONSTEXPR auto found = sprout::strrchr(str, c);
|
||
|
TESTSPR_BOTH_ASSERT(sprout::distance(str, found) == 17);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
} // namespace testspr
|
||
|
|
||
|
#ifndef TESTSPR_CPP_INCLUDE
|
||
|
# define TESTSPR_TEST_FUNCTION testspr::cstring_strrchr_test
|
||
|
# include <testspr/include_main.hpp>
|
||
|
#endif
|
||
|
|
||
|
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_STRRCHR_CPP
|