| 84 | uint32_t nextSize() override { return generator_(); } |
| 85 | |
| 86 | std::string describe() const override { |
| 87 | std::ostringstream desc; |
| 88 | desc << "rand(" << getMin() << ", " << getMax() << ")"; |
| 89 | return desc.str(); |
| 90 | } |
| 91 | |
| 92 | uint32_t getMin() const { return (generator_.distribution().min)(); } |
| 93 | uint32_t getMax() const { return (generator_.distribution().max)(); } |
no test coverage detected