added a test for !=

[SVN r14091]
This commit is contained in:
Jaakko Järvi
2002-06-06 15:47:23 +00:00
parent 22d8e8ecc0
commit d24e9b9a72

View File

@ -395,6 +395,7 @@ equality_test()
tuple<int, char> t4(2, 'a');
BOOST_TEST(t1 != t3);
BOOST_TEST(t1 != t4);
BOOST_TEST(!(t1 != t2));
}