| 11 | BOOST_FIXTURE_TEST_SUITE(sanity_tests, BasicTestingSetup) |
| 12 | |
| 13 | BOOST_AUTO_TEST_CASE(basic_sanity) |
| 14 | { |
| 15 | BOOST_CHECK_MESSAGE(glibc_sanity_test() == true, "libc sanity test"); |
| 16 | BOOST_CHECK_MESSAGE(glibcxx_sanity_test() == true, "stdlib sanity test"); |
| 17 | BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "openssl ECC test"); |
| 18 | } |
| 19 | |
| 20 | BOOST_AUTO_TEST_SUITE_END() |
nothing calls this directly
no test coverage detected