Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/collections/string-api-coverage.cfa

    r01e6bd9 r3bfa80f  
    158158
    159159
    160 
    161 
    162160    sout | len(s); // 5
    163161
     
    410408        sout
    411409                | (return size_t)include( "1FeC34aB", isxdigit )
    412                 | (return size_t)include( ".,;!\"", ispunct )
     410                | (return size_t)include( ".,;'!\"", ispunct )
    413411                | (return size_t)include( "XXXx", isupper );
    414412
    415413        sout
    416414                | (return string)include( "1FeC34aB", isxdigit )
    417                 | (return string)include( ".,;!\"", ispunct )
     415                | (return string)include( ".,;'!\"", ispunct )
    418416                | (return string)include( "XXXx", isupper );
    419417
    420418        sout
    421419                | (return size_t)exclude( "1FeC34aB", isdigit )
    422                 | (return size_t)exclude( ".,;!\"", ispunct )
     420                | (return size_t)exclude( ".,;'!\"", ispunct )
    423421                | (return size_t)exclude( "XXXx", islower );
    424422
    425423        sout
    426424                | (return string)exclude( "1FeC34aB", isalpha )
    427                 | (return string)exclude( ".,;!\"", ispunct )
     425                | (return string)exclude( ".,;'!\"", ispunct )
    428426                | (return string)exclude( "XXXx", islower );
    429427}
Note: See TracChangeset for help on using the changeset viewer.