()
| 16 | } |
| 17 | |
| 18 | private static long cpuLoad() { |
| 19 | long count = 0; |
| 20 | for (int i = 0; i < 100_000; i++) { |
| 21 | count += System.getProperties().hashCode(); |
| 22 | } |
| 23 | return count; |
| 24 | } |
| 25 | |
| 26 | private static void normalCpuLoad() { |
| 27 | long startTime = System.currentTimeMillis(); |
no test coverage detected