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

Method testEquality

test/array.cpp:1296–1304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1294 }
1295
1296 void
1297 testEquality()
1298 {
1299 BOOST_TEST(array({}) == array({}));
1300 BOOST_TEST(array({}) != array({1,2}));
1301 BOOST_TEST(array({1,2,3}) == array({1,2,3}));
1302 BOOST_TEST(array({1,2,3}) != array({1,2}));
1303 BOOST_TEST(array({1,2,3}) != array({3,2,1}));
1304 }
1305
1306 void
1307 testHash()

Callers

nothing calls this directly

Calls 1

arrayClass · 0.50

Tested by

no test coverage detected