mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
add test: cstring
This commit is contained in:
parent
b51b14efa9
commit
d1379ff155
14 changed files with 478 additions and 0 deletions
31
libs/cstring/test/strlen.cpp
Normal file
31
libs/cstring/test/strlen.cpp
Normal file
|
@ -0,0 +1,31 @@
|
|||
#ifndef SPROUT_LIBS_CSTRING_TEST_STRLEN_CPP
|
||||
#define SPROUT_LIBS_CSTRING_TEST_STRLEN_CPP
|
||||
|
||||
#include <sprout/cstring/strlen.hpp>
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
static void cstring_strlen_test() {
|
||||
using namespace sprout;
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR char str1[] = "today";
|
||||
SPROUT_STATIC_CONSTEXPR char str2[] = "hello world";
|
||||
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strlen(str1);
|
||||
TESTSPR_BOTH_ASSERT(result == 5);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strlen(str2);
|
||||
TESTSPR_BOTH_ASSERT(result == 11);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::cstring_strlen_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_STRLEN_CPP
|
Loading…
Add table
Add a link
Reference in a new issue