| 53 | |
| 54 | |
| 55 | TEST(LogEvent, init_empty) |
| 56 | { |
| 57 | Events::Log empty; |
| 58 | std::string res = test_empty(empty, true); |
| 59 | ASSERT_TRUE(res.empty()) << res; |
| 60 | ASSERT_EQ(empty.format, Events::Log::Format::AUTO); |
| 61 | } |
| 62 | |
| 63 | |
| 64 | TEST(LogEvent, init_with_value_1) |
nothing calls this directly
no test coverage detected