31 auto data = handler.get_set();
32 BOOST_CHECK_EQUAL(data.size(), test.size());
34 for (
auto p = data.begin(); p != data.end(); ++p) {
35 BOOST_CHECK_MESSAGE(test.find(*p) != test.end(),
"unexpected plugin '" << *p <<
"' found");
38 for (
auto p = test.begin(); p != test.end(); ++p)
39 BOOST_CHECK_MESSAGE(data.find(*p) != data.end(),
"expected plugin '" << *p <<
"' not found");