| 3 | import org.junit.Test; |
| 4 | |
| 5 | public class JDKCheck { |
| 6 | |
| 7 | @Test(expected = ClassNotFoundException.class) |
| 8 | public void isJava8() throws Exception { |
| 9 | Class.forName("java.lang.StackWalker"); |
| 10 | } |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected