MCPcopy Create free account
hub / github.com/boostorg/json / testIssue692

Method testIssue692

test/array.cpp:1325–1338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1323 }
1324
1325 void
1326 testIssue692()
1327 {
1328 array a;
1329 object obj;
1330 obj["test1"] = "hello";
1331 a.push_back(obj);
1332 a.push_back(obj);
1333 a.push_back(obj);
1334 a.push_back(obj);
1335 a.push_back(obj);
1336 while(a.size())
1337 a.erase(a.begin());
1338 }
1339
1340 void
1341 run()

Callers

nothing calls this directly

Calls 3

push_backMethod · 0.45
sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected