()
| 12 | public static void main(String[] args) { |
| 13 | new Thread(new Runnable() { |
| 14 | @Override |
| 15 | public void run() { |
| 16 | methodForThreadEarlyEnd(); |
| 17 | } |
| 18 | }, "ThreadEarlyEnd").start(); |
| 19 | |
| 20 | new Thread(new Runnable() { |
nothing calls this directly
no test coverage detected