more testing

This commit is contained in:
Hans Dembinski 2016-07-22 01:09:56 -04:00
parent 537f14a72e
commit cb90c534c6

View File

@ -166,6 +166,12 @@ BOOST_AUTO_TEST_CASE(bad_compare)
auto c = histogram_t<Dynamic>(integer_axis(0, 1));
BOOST_CHECK(!(b == c));
BOOST_CHECK(a == c);
c.fill(0);
BOOST_CHECK(!(a == c));
a.fill(0);
BOOST_CHECK(a == c);
a.fill(0);
BOOST_CHECK(!(a == c));
}
BOOST_AUTO_TEST_CASE(d1)