()
| 140 | } |
| 141 | |
| 142 | *inputGen() { |
| 143 | for (let i = 0; i < this.numFiles; i++) { |
| 144 | const count = random.randInt(1, this.maxTestInputs); |
| 145 | const inputs = []; |
| 146 | for (let j= 0; j < count; j++) { |
| 147 | inputs.push(...random.single(this.corpora).getRandomTestcases(1)); |
| 148 | } |
| 149 | |
| 150 | if (inputs.length > 0) { |
| 151 | yield inputs; |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | /** |
nothing calls this directly
no test coverage detected