Changeset 7abc3de for tests/collections
- Timestamp:
- Jan 17, 2024, 6:31:03 PM (11 months ago)
- Branches:
- master
- Children:
- 906d8fa
- Parents:
- 11f65b3
- Location:
- tests/collections
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/collections/.expect/string-api-coverage.txt
r11f65b3 r7abc3de 14 14 true false 15 15 true false 16 1234567 16 17 123 17 18 hello 19 hell 18 20 hello 19 21 world 20 22 hello 21 23 world 24 Q 22 25 1234567 23 26 hello -
tests/collections/string-api-coverage.cfa
r11f65b3 r7abc3de 66 66 // 67 67 { 68 string b1 = { "1234567", 3 }; 69 sout | b1; // 123 68 string b1 = "1234567"; 69 sout | b1; // 1234567 70 71 string b1x = { "1234567", 3 }; 72 sout | b1x; // 123 70 73 71 74 string b2 = s; 72 75 sout | b2; // hello 76 77 string b2x = { s, 4 }; 78 sout | b2x; // hell 73 79 74 80 // todo: a plain string & … … 88 94 b4 = s_constref; 89 95 sout | b4; // world 96 97 string b5 = 'Q'; 98 sout | b5; // Q 99 100 90 101 } 91 102 assertWellFormedHandleList( 10 );
Note: See TracChangeset
for help on using the changeset viewer.