ReactOS 0.4.15-dev-7942-gd23573b
CStringTest Class Reference
Inheritance diagram for CStringTest:
Collaboration diagram for CStringTest:

Protected Member Functions

void import_checks ()
 

Private Member Functions

 CPPUNIT_TEST_SUITE (CStringTest)
 
 CPPUNIT_TEST (import_checks)
 
 CPPUNIT_TEST_SUITE_END ()
 

Detailed Description

Definition at line 14 of file cstring_test.cpp.

Member Function Documentation

◆ CPPUNIT_TEST()

CStringTest::CPPUNIT_TEST ( import_checks  )
private

◆ CPPUNIT_TEST_SUITE()

CStringTest::CPPUNIT_TEST_SUITE ( CStringTest  )
private

◆ CPPUNIT_TEST_SUITE_END()

CStringTest::CPPUNIT_TEST_SUITE_END ( )
private

◆ import_checks()

void CStringTest::import_checks ( )
protected

Definition at line 37 of file cstring_test.cpp.

38{
39#if !defined (STLPORT) || defined (_STLP_USE_NAMESPACES)
40 std::size_t bar = 0;
41 CPPUNIT_CHECK( bar == 0 );
42
43 CPPUNIT_CHECK( std::memchr("foo", 'o', 3) != NULL );
44 CPPUNIT_CHECK( std::memcmp("foo1", "foo2", 3) == 0 );
45 char buf1[1], buf2[1];
46 CPPUNIT_CHECK( std::memcpy(buf1, buf2, 0) != NULL );
47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
48 CPPUNIT_CHECK( std::memset(buf1, 0, 1) != NULL );
49 char buf[16]; buf[0] = 0;
50 const char* foo = "foo";
51# if !defined(_WIN32_WCE)
52 CPPUNIT_CHECK( std::strcoll("foo", "foo") == 0 );
53 CPPUNIT_CHECK( std::strerror(0) != NULL );
54# endif
55 CPPUNIT_CHECK( std::strcat((char*)buf, foo) == (char*)buf ); // buf <- foo
56 CPPUNIT_CHECK( std::strchr(foo, 'o') != NULL );
57 CPPUNIT_CHECK( std::strcmp("foo1", "foo2") < 0 );
58 CPPUNIT_CHECK( std::strcpy((char*)buf, foo) == (char*)buf ); // buf <- foo
59 CPPUNIT_CHECK( std::strcspn("foo", "o") == 1 );
60 CPPUNIT_CHECK( std::strlen("foo") == 3 );
61 CPPUNIT_CHECK( std::strncat((char*)buf, foo, 2) == (char*)buf ); // buf <- foofo
62 CPPUNIT_CHECK( std::strncmp("foo1", "foo2", 3) == 0 );
63 CPPUNIT_CHECK( std::strncpy((char*)buf, foo, 3) == (char*)buf ); // buf <- foo
64 CPPUNIT_CHECK( std::strpbrk(foo, "abcdo") == foo + 1 );
65 const char* foofoo = "foofoo";
66 CPPUNIT_CHECK( std::strrchr(foofoo, 'f') == foofoo + 3 );
67 CPPUNIT_CHECK( std::strspn(foofoo, "aofz") == 6 );
68 CPPUNIT_CHECK( std::strstr(foo, "") == foo );
69 char foofoobuf[] = "foofoo";
70 CPPUNIT_CHECK( std::strtok(foofoobuf, "z") != NULL );
71# if !defined(_WIN32_WCE)
72 CPPUNIT_CHECK( std::strxfrm((char*)buf, foo, 3) != 0 );
73# endif
74#endif
75}
#define CPPUNIT_CHECK(X)
Definition: cppunit_mini.h:195
#define NULL
Definition: types.h:112
void bar()
Definition: ehthrow.cxx:142
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751

The documentation for this class was generated from the following file: