Home | History | Annotate | Download | only in string.conversions

Lines Matching refs:assert

26     assert(std::stoll("0") == 0);
27 assert(std::stoll(L"0") == 0);
28 assert(std::stoll("-0") == 0);
29 assert(std::stoll(L"-0") == 0);
30 assert(std::stoll("-10") == -10);
31 assert(std::stoll(L"-10") == -10);
32 assert(std::stoll(" 10") == 10);
33 assert(std::stoll(L" 10") == 10);
35 assert(std::stoll("10g", &idx, 16) == 16);
36 assert(idx == 2);
38 assert(std::stoll(L"10g", &idx, 16) == 16);
39 assert(idx == 2);
45 assert(false);
49 assert(idx == 0);
54 assert(false);
58 assert(idx == 0);
63 assert(false);
67 assert(idx == 0);
72 assert(false);
76 assert(idx == 0);
81 assert(false);
85 assert(idx == 0);
90 assert(false);
94 assert(idx == 0);
99 assert(false);
103 assert(idx == 0);
108 assert(false);
112 assert(idx == 0);