1
0
forked from boostorg/core

replaced BOOST_TEST

[SVN r27054]
This commit is contained in:
Stefan Slapeta
2005-02-03 13:48:49 +00:00
committed by Peter Dimov
parent 220080e288
commit f27b153b75
2 changed files with 8 additions and 8 deletions

View File

@@ -60,11 +60,11 @@ struct ref_wrapper
static void test(T x)
{
BOOST_TEST(passthru(ref(x)) == &x);
BOOST_TEST(&ref(x).get() == &x);
BOOST_CHECK(passthru(ref(x)) == &x);
BOOST_CHECK(&ref(x).get() == &x);
BOOST_TEST(cref_passthru(cref(x)) == &x);
BOOST_TEST(&cref(x).get() == &x);
BOOST_CHECK(cref_passthru(cref(x)) == &x);
BOOST_CHECK(&cref(x).get() == &x);
}
};