| 26 | BOOST_CORE_STATIC_ASSERT( std::is_enum<kind>::value ); |
| 27 | |
| 28 | void |
| 29 | check(kind k, string_view s) |
| 30 | { |
| 31 | BOOST_TEST( |
| 32 | to_string(k) == s); |
| 33 | std::stringstream ss; |
| 34 | ss << k; |
| 35 | BOOST_TEST(ss.str() == s); |
| 36 | } |
| 37 | |
| 38 | void |
| 39 | run() |
nothing calls this directly
no outgoing calls
no test coverage detected