🚧 debug
This commit is contained in:
parent
ebf28a26ee
commit
97e0d20ce9
1 changed files with 3 additions and 0 deletions
|
@ -99,9 +99,12 @@ TEST_CASE("UBJSON")
|
||||||
numbers.push_back(-100000000000l);
|
numbers.push_back(-100000000000l);
|
||||||
numbers.push_back(-10000000000l);
|
numbers.push_back(-10000000000l);
|
||||||
numbers.push_back(-2147483649l);
|
numbers.push_back(-2147483649l);
|
||||||
|
size_t index = 0;
|
||||||
for (auto i : numbers)
|
for (auto i : numbers)
|
||||||
{
|
{
|
||||||
CAPTURE(i);
|
CAPTURE(i);
|
||||||
|
CAPTURE(index);
|
||||||
|
++index;
|
||||||
|
|
||||||
// create JSON value with integer number
|
// create JSON value with integer number
|
||||||
json j = i;
|
json j = i;
|
||||||
|
|
Loading…
Reference in a new issue