| 27 | namespace { |
| 28 | |
| 29 | TEST(MessageWrapper, Size) { |
| 30 | static_assert(sizeof(MessageWrapper) <= 2 * sizeof(uintptr_t), |
| 31 | "MessageWrapper must not increase CelValue size."); |
| 32 | } |
| 33 | |
| 34 | TEST(MessageWrapper, WrapsMessage) { |
| 35 | TestMessage test_message; |
nothing calls this directly
no test coverage detected