| 725 | Key getRandomVersionStampKey() { return versionStampKeyForIndex(deterministicRandom()->randomInt(0, nodes)); } |
| 726 | |
| 727 | KeySelector getRandomKeySelector() { |
| 728 | int scale = 1 << deterministicRandom()->randomInt(0, 14); |
| 729 | return KeySelectorRef( |
| 730 | getRandomKey(), deterministicRandom()->random01() < 0.5, deterministicRandom()->randomInt(-scale, scale)); |
| 731 | } |
| 732 | |
| 733 | GetRangeLimits getRandomLimits() { |
| 734 | int kind = deterministicRandom()->randomInt(0, 3); |
no test coverage detected