Changeset 3bfa80f
- Timestamp:
- May 3, 2026, 8:27:54 AM (3 days ago)
- Branches:
- master
- Children:
- 2fd3de7
- Parents:
- c136863
- Location:
- tests/collections
- Files:
-
- 2 edited
-
.expect/string-api-coverage.txt (modified) (1 diff)
-
string-api-coverage.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/.expect/string-api-coverage.txt
rc136863 r3bfa80f 86 86 3 0 0 11 26 0 87 87 abc abcdefghijk abcdefghijklmnopqrstuvwxyz 88 8 3389 1FeC34aB .,; XXX88 8 6 3 89 1FeC34aB .,;'!" XXX 90 90 0 0 3 91 91 1 XXX -
tests/collections/string-api-coverage.cfa
rc136863 r3bfa80f 158 158 159 159 160 161 162 160 sout | len(s); // 5 163 161 … … 410 408 sout 411 409 | (return size_t)include( "1FeC34aB", isxdigit ) 412 | (return size_t)include( ".,; ’!\"", ispunct )410 | (return size_t)include( ".,;'!\"", ispunct ) 413 411 | (return size_t)include( "XXXx", isupper ); 414 412 415 413 sout 416 414 | (return string)include( "1FeC34aB", isxdigit ) 417 | (return string)include( ".,; ’!\"", ispunct )415 | (return string)include( ".,;'!\"", ispunct ) 418 416 | (return string)include( "XXXx", isupper ); 419 417 420 418 sout 421 419 | (return size_t)exclude( "1FeC34aB", isdigit ) 422 | (return size_t)exclude( ".,; ’!\"", ispunct )420 | (return size_t)exclude( ".,;'!\"", ispunct ) 423 421 | (return size_t)exclude( "XXXx", islower ); 424 422 425 423 sout 426 424 | (return string)exclude( "1FeC34aB", isalpha ) 427 | (return string)exclude( ".,; ’!\"", ispunct )425 | (return string)exclude( ".,;'!\"", ispunct ) 428 426 | (return string)exclude( "XXXx", islower ); 429 427 }
Note:
See TracChangeset
for help on using the changeset viewer.