| 27 | }); |
| 28 | |
| 29 | TEST_F(IniWriterTest, create_empty) |
| 30 | { |
| 31 | MemoryStream ms(0); |
| 32 | ASSERT_EQ(ms.CanRead(), true); |
| 33 | ASSERT_EQ(ms.CanWrite(), true); |
| 34 | auto iw = CreateIniWriter(&ms); |
| 35 | ASSERT_NE(iw, nullptr); |
| 36 | } |
| 37 | |
| 38 | TEST_F(IniWriterTest, create_one_section) |
| 39 | { |
nothing calls this directly
no test coverage detected