Sprout/libs/cstring/test/strspn.cpp

33 lines
892 B
C++
Raw Normal View History

2013-01-12 16:49:11 +00:00
#ifndef SPROUT_LIBS_CSTRING_TEST_STRSPN_CPP
#define SPROUT_LIBS_CSTRING_TEST_STRSPN_CPP
#include <sprout/cstring/strspn.hpp>
#include <testspr/tools.hpp>
namespace testspr {
static void cstring_strspn_test() {
using namespace sprout;
{
SPROUT_STATIC_CONSTEXPR char str[] = "abcdefgabcdefghij";
SPROUT_STATIC_CONSTEXPR char str1[] = "abcfg";
SPROUT_STATIC_CONSTEXPR char str2[] = "gfedcba";
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::strspn(str, str1);
TESTSPR_BOTH_ASSERT(result == 3);
}
{
SPROUT_STATIC_CONSTEXPR auto result = sprout::strspn(str, str2);
TESTSPR_BOTH_ASSERT(result == 14);
}
}
}
} // namespace testspr
#ifndef TESTSPR_CPP_INCLUDE
# define TESTSPR_TEST_FUNCTION testspr::cstring_strspn_test
# include <testspr/include_main.hpp>
#endif
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_STRSPN_CPP