| 22 | BOOST_AUTO_TEST_SUITE(TUuidBoostTestNoDirective) |
| 23 | |
| 24 | BOOST_AUTO_TEST_CASE(compiler_directive_not_set) { |
| 25 | // Test if the macro is set as expected |
| 26 | #ifdef THRIFT_TUUID_SUPPORT_BOOST_UUID |
| 27 | BOOST_TEST(false, "The 'THRIFT_TUUID_SUPPORT_BOOST_UUID' preprocessor must NOT be set for these tests"); |
| 28 | #else |
| 29 | BOOST_TEST(true); |
| 30 | #endif // THRIFT_TUUID_SUPPORT_BOOST_UUID |
| 31 | } |
| 32 | BOOST_AUTO_TEST_SUITE_END() |
| 33 | |
| 34 | // This inclusion order is unconventional: This test specifcially tests that |