| 6 | namespace SC |
| 7 | { |
| 8 | static bool resultMessageEquals(const Result& result, StringSpan expected) |
| 9 | { |
| 10 | return not result and StringSpan::fromNullTerminated(result.message, StringEncoding::Ascii) == expected; |
| 11 | } |
| 12 | |
| 13 | struct HttpHeadersTest : public TestCase |
| 14 | { |
no test coverage detected