Lines Matching defs:test
19 void test ( const CharT *s, size_t len ) {
43 test ( "ABCDE", 5 );
44 test ( "a", 1 );
45 test ( "", 0 );
47 test ( L"ABCDE", 5 );
48 test ( L"a", 1 );
49 test ( L"", 0 );
52 test ( u"ABCDE", 5 );
53 test ( u"a", 1 );
54 test ( u"", 0 );
56 test ( U"ABCDE", 5 );
57 test ( U"a", 1 );
58 test ( U"", 0 );