mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-12 14:54:10 +00:00
add test: cstring
This commit is contained in:
parent
b51b14efa9
commit
d1379ff155
14 changed files with 478 additions and 0 deletions
42
libs/cstring/test/strcmp.cpp
Normal file
42
libs/cstring/test/strcmp.cpp
Normal file
|
@ -0,0 +1,42 @@
|
|||
#ifndef SPROUT_LIBS_CSTRING_TEST_STRCMP_CPP
|
||||
#define SPROUT_LIBS_CSTRING_TEST_STRCMP_CPP
|
||||
|
||||
#include <sprout/cstring/strcmp.hpp>
|
||||
#include <testspr/tools.hpp>
|
||||
|
||||
namespace testspr {
|
||||
static void cstring_strcmp_test() {
|
||||
using namespace sprout;
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR char str[] = "ABC";
|
||||
SPROUT_STATIC_CONSTEXPR char str1[] = "ABC";
|
||||
SPROUT_STATIC_CONSTEXPR char str2[] = "ABD";
|
||||
SPROUT_STATIC_CONSTEXPR char str3[] = "B";
|
||||
SPROUT_STATIC_CONSTEXPR char str4[] = "AAAA";
|
||||
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strcmp(str, str1);
|
||||
TESTSPR_BOTH_ASSERT(result == 0);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strcmp(str, str2);
|
||||
TESTSPR_BOTH_ASSERT(result < 0);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strcmp(str, str3);
|
||||
TESTSPR_BOTH_ASSERT(result < 0);
|
||||
}
|
||||
{
|
||||
SPROUT_STATIC_CONSTEXPR auto result = sprout::strcmp(str, str4);
|
||||
TESTSPR_BOTH_ASSERT(result > 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
} // namespace testspr
|
||||
|
||||
#ifndef TESTSPR_CPP_INCLUDE
|
||||
# define TESTSPR_TEST_FUNCTION testspr::cstring_strcmp_test
|
||||
# include <testspr/include_main.hpp>
|
||||
#endif
|
||||
|
||||
#endif // #ifndef SPROUT_LIBS_CSTRING_TEST_STRCMP_CPP
|
Loading…
Add table
Add a link
Reference in a new issue