| 1037 | bool expectedAbortAfterShrink{false}; |
| 1038 | |
| 1039 | std::string debugString() const { |
| 1040 | return fmt::format( |
| 1041 | "capacity: {}, reclaimable: {}, allocateBytes: {}, expectedCapacityAfterShrink: {}, expectedUsagedAfterShrink: {}, expectedAbortAfterShrink: {}", |
| 1042 | succinctBytes(capacity), |
| 1043 | reclaimable, |
| 1044 | succinctBytes(allocateBytes), |
| 1045 | succinctBytes(expectedCapacityAfterShrink), |
| 1046 | succinctBytes(expectedUsagedAfterShrink), |
| 1047 | expectedAbortAfterShrink); |
| 1048 | } |
| 1049 | }; |
| 1050 | |
| 1051 | struct { |
no test coverage detected