| 2120 | uint64_t spillCapacityLowerBound; |
| 2121 | std::vector<TaskData> tasks; |
| 2122 | std::string debugString() const { |
| 2123 | std::stringstream ss; |
| 2124 | for (const auto& task : tasks) { |
| 2125 | ss << task.debugString() << ", "; |
| 2126 | } |
| 2127 | return fmt::format( |
| 2128 | "testName {}, shrinkBytes {}, tasks [{}]", |
| 2129 | testName, |
| 2130 | shrinkBytes, |
| 2131 | ss.str()); |
| 2132 | } |
| 2133 | }; |
| 2134 | |
| 2135 | std::vector<TestData> testSettings = { |
nothing calls this directly
no test coverage detected