| 43 | #include <htp/htp_private.h> |
| 44 | |
| 45 | TEST(BstrTest, Alloc) { |
| 46 | bstr *p1; |
| 47 | p1 = bstr_alloc(10); |
| 48 | EXPECT_EQ(10, bstr_size(p1)); |
| 49 | EXPECT_EQ(0, bstr_len(p1)); |
| 50 | bstr_free(p1); |
| 51 | } |
| 52 | |
| 53 | TEST(BstrTest, ExpandLocal) { |
| 54 | bstr *p1; |
nothing calls this directly
no test coverage detected