| 2151 | } |
| 2152 | |
| 2153 | String StepPrinter::printFinalSampleStep(const FinalSampleStep & step) |
| 2154 | { |
| 2155 | std::stringstream details; |
| 2156 | details << "Sample Size: " << step.getSampleSize() << "\\n"; |
| 2157 | details << "Max Chunk Size: " << step.getMaxChunkSize(); |
| 2158 | return details.str(); |
| 2159 | } |
| 2160 | |
| 2161 | String StepPrinter::printLimitStep(const LimitStep & step) |
| 2162 | { |
nothing calls this directly
no test coverage detected