(String[] args)
| 3 | private static final int iterations = 1000; |
| 4 | |
| 5 | public static void main(String[] args) { |
| 6 | verifyAppendStrLength(); |
| 7 | verifyAppendCharLength(); |
| 8 | verifySubstring(); |
| 9 | } |
| 10 | |
| 11 | private static void verify(String srcStr, int iterations, String result) { |
| 12 | int expectedLength = srcStr.length() * iterations; |
nothing calls this directly
no test coverage detected