| 211 | } |
| 212 | |
| 213 | dmHttpServerPrivate::ParseResult Parse(const char* headers) |
| 214 | { |
| 215 | char* h = strdup(headers); |
| 216 | dmHttpServerPrivate::ParseResult r; |
| 217 | r = dmHttpServerPrivate::ParseHeader(h, this, |
| 218 | &dmHttpServerParserTest::Request, |
| 219 | &dmHttpServerParserTest::Header, |
| 220 | &dmHttpServerParserTest::Content); |
| 221 | free(h); |
| 222 | return r; |
| 223 | } |
| 224 | |
| 225 | void SetUp() override |
| 226 | { |
nothing calls this directly
no test coverage detected