()
| 139 | |
| 140 | // Relative paths of all files in corpus including generated skipped. |
| 141 | *relFilesForGenSkipped() { |
| 142 | for (const relPath of this.relFiles()) { |
| 143 | yield relPath; |
| 144 | } |
| 145 | for (const relPath of this.skippedFiles) { |
| 146 | yield relPath; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Returns "count" relative test paths, randomly selected from soft-skipped |
no test coverage detected