Searched refs:testCatchException (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java2252 public void testCatchException() throws Throwable { method in class:MethodHandlesTest
2258 testCatchException(int.class, new ClassCastException("testing"), throwMode, nargs);
2260 testCatchException(void.class, new java.io.IOException("testing"), throwMode, nargs);
2261 testCatchException(String.class, new LinkageError("testing"), throwMode, nargs);
2268 void testCatchException(Class<?> returnType, Throwable thrown, int throwMode, int nargs) throws Throwable { method in class:MethodHandlesTest
2269 testCatchException(returnType, thrown, throwMode, nargs, 0);
2272 testCatchException(returnType, thrown, throwMode, nargs, catchDrops);
2292 void testCatchException(Class<?> returnType, Throwable thrown, int throwMode, int nargs, int catchDrops) throws Throwable { method in class:MethodHandlesTest

Completed in 54 milliseconds