2
0
mirror of https://github.com/boostorg/leaf.git synced 2026-01-19 04:22:08 +00:00

BOOST_TEST->BOOST_TEST_EQ

This commit is contained in:
Emil Dotchevski
2019-01-25 10:13:23 -08:00
parent 73aabdb466
commit e45cb511c5
34 changed files with 810 additions and 801 deletions

View File

@@ -42,14 +42,14 @@ int main()
},
[ ]( info<2> const & x, info<3> const & y )
{
BOOST_TEST(x.value==2);
BOOST_TEST(y.value==3);
BOOST_TEST_EQ(x.value, 2);
BOOST_TEST_EQ(y.value, 3);
return 2;
},
[ ]
{
return 3;
} );
BOOST_TEST(r==2);
BOOST_TEST_EQ(r, 2);
return boost::report_errors();
}