()
| 24 | } |
| 25 | |
| 26 | private static void normalCpuLoad() { |
| 27 | long startTime = System.currentTimeMillis(); |
| 28 | |
| 29 | while (System.currentTimeMillis() - startTime < 4000) { |
| 30 | cpuLoad(); |
| 31 | sleep(20); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | private static void cpuSpike() { |
| 36 | long startTime = System.currentTimeMillis(); |
nothing calls this directly
no test coverage detected