()
| 101 | } |
| 102 | |
| 103 | @Contract("-> fail") |
| 104 | public static <T> T assertNeverCalled() { |
| 105 | return throwAssert("Should never been called"); |
| 106 | } |
| 107 | |
| 108 | @Contract("_,_-> fail") |
| 109 | public static <T> T assertShouldNeverHappen(String format, Object... args) { |
nothing calls this directly
no test coverage detected