()
| 142 | } |
| 143 | |
| 144 | public static boolean testRandom() { |
| 145 | String guess = randomString(); |
| 146 | String solution = randomString(); |
| 147 | return test(guess, solution); |
| 148 | } |
| 149 | |
| 150 | public static boolean test(int count) { |
| 151 | for (int i = 0; i < count; i++) { |
no test coverage detected