Changeset f2898df for tests/collections


Ignore:
Timestamp:
Jan 19, 2024, 5:25:28 PM (11 months ago)
Author:
Michael Brooks <mlbrooks@…>
Branches:
master
Children:
8abe4090, a4ed165
Parents:
dd10bf4
Message:

Implement string initialization and assignment from various numeric types

Location:
tests/collections
Files:
2 edited

Legend:

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

    rdd10bf4 rf2898df  
    2323world
    2424Q
     2542
     26-42
     275.5
     285.5
     295.5+3.4i
     305.5+3.4i
    25311234567
    2632hello
     
    3238123
    3339hell
     4042
     41-42
     425.5
     435.5
     445.5+3.4i
     455.5+3.4i
    34465
    3547helloworld
  • tests/collections/string-api-coverage.cfa

    rdd10bf4 rf2898df  
    9898        sout | b5; // Q
    9999
    100 
     100        string b6 = 42;
     101        sout | b6; // 42
     102
     103        string b7 = -42;
     104        sout | b7; // -42
     105
     106        string b8 = 5.5;
     107        sout | b8; // 5.5
     108
     109        string b9 = 5.5L;
     110        sout | b9; // 5.5
     111
     112        string b10 = 5.5+3.4i;
     113        sout | b10; // 5.5+3.4i
     114
     115        string b11 = 5.5L+3.4Li;
     116        sout | b11; // 5.5+3.4i
    101117    }
    102118                                            assertWellFormedHandleList( 10 );
     
    141157        strncpy( b, s, 4 );
    142158        sout | b; // hell
     159
     160        b = 42;
     161        sout | b; // 42
     162
     163        b = -42;
     164        sout | b; // -42
     165
     166        b = 5.5;
     167        sout | b; // 5.5
     168
     169        b = 5.5L;
     170        sout | b; // 5.5
     171
     172        b = 5.5+3.4i;
     173        sout | b; // 5.5+3.4i
     174
     175        b = 5.5L+3.4Li;
     176        sout | b; // 5.5+3.4i
    143177    }
    144178                                            assertWellFormedHandleList( 10 );
Note: See TracChangeset for help on using the changeset viewer.