X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=senf%2FUtils%2FTypeIdValue.test.cc;h=94c5c342da56dd04611ea516478593e7fd2358ed;hb=3a0e403d889f8a16d78d50bbcd7a0f0157b05313;hp=4652f536618262e82652cf6bad260055eed3dbf2;hpb=26610f603ebdd465307b9621f532c1fe19fd5571;p=senf.git diff --git a/senf/Utils/TypeIdValue.test.cc b/senf/Utils/TypeIdValue.test.cc index 4652f53..94c5c34 100644 --- a/senf/Utils/TypeIdValue.test.cc +++ b/senf/Utils/TypeIdValue.test.cc @@ -35,11 +35,12 @@ #define prefix_ ///////////////////////////////cc.p//////////////////////////////////////// -BOOST_AUTO_UNIT_TEST(typeIdValue) +SENF_AUTO_UNIT_TEST(typeIdValue) { // We don't care for the ordering, just that the following compiles (void) ( senf::typeIdValue() < senf::typeIdValue() ); - (void) ( senf::typeIdValue() == senf::typeIdValue() ); + BOOST_CHECK ( senf::typeIdValue() != senf::typeIdValue() ); + BOOST_CHECK ( senf::typeIdValue() == senf::typeIdValue() ); } ///////////////////////////////cc.e////////////////////////////////////////