| 10 | using minitts::server::parse_multipart_body; |
| 11 | |
| 12 | void require(bool condition, const std::string & message) { |
| 13 | if (!condition) { |
| 14 | throw std::runtime_error(message); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | void test_extract_multipart_boundary() { |
| 19 | require( |
no outgoing calls
no test coverage detected