Changeset 2f16569 for tests


Ignore:
Timestamp:
May 8, 2026, 7:52:34 AM (18 hours ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
bc547d3
Parents:
d8a2f98
Message:

remove string 'contains' function and replace with 'includes', make string 'includes' inline

File:
1 edited

Legend:

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

    rd8a2f98 r2f16569  
    264264
    265265    s += '?'; // already tested
    266     sout | contains( s, 'h' ) | contains( s, '?' ) | contains( s, 'o' ); // true true false
     266    sout | includes( s, 'h' ) | includes( s, '?' ) | includes( s, 'o' ); // true true false
    267267
    268268    sout
Note: See TracChangeset for help on using the changeset viewer.