| 33 | static constexpr int BUFSIZE_FOR_REGRESSION_TEST = 128; |
| 34 | |
| 35 | std::string |
| 36 | get_long_string(int size) |
| 37 | { |
| 38 | std::string s(size, '0'); |
| 39 | auto p = s.data(); |
| 40 | for (int i = 0; i < size; ++i) { |
| 41 | p[i] = '0' + (i % 10); |
| 42 | } |
| 43 | return s; |
| 44 | } |
| 45 | |
| 46 | TEST_CASE("XPACK_Integer", "[xpack]") |
| 47 | { |
no test coverage detected