mirror of
https://github.com/boostorg/core.git
synced 2025-11-29 22:00:17 +01:00
Add other relational operators; update sv_eq_test
This commit is contained in:
@@ -9,8 +9,18 @@
|
||||
# include <string_view>
|
||||
#endif
|
||||
|
||||
#define TEST_EQ(x, y) BOOST_TEST_EQ(x, y); BOOST_TEST_NOT((x) != (y))
|
||||
#define TEST_NE(x, y) BOOST_TEST_NE(x, y); BOOST_TEST_NOT((x) == (y))
|
||||
#define TEST_EQ(x, y) \
|
||||
BOOST_TEST_EQ(x, y); \
|
||||
BOOST_TEST_NOT((x) != (y)); \
|
||||
BOOST_TEST_LE(x, y); \
|
||||
BOOST_TEST_GE(x, y); \
|
||||
BOOST_TEST_NOT((x) < (y)); \
|
||||
BOOST_TEST_NOT((x) > (y))
|
||||
|
||||
#define TEST_NE(x, y) \
|
||||
BOOST_TEST_NE(x, y); \
|
||||
BOOST_TEST_NOT((x) == (y)); \
|
||||
BOOST_TEST((x) < (y) || (x) > (y));
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user