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

/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java371 public void testWrongArgumentCount() throws Throwable { method in class:InvokeGenericTest
372 startTest("testWrongArgumentCount");
374 testWrongArgumentCount(Collections.<Class<?>>nCopies(i, Integer.class));
376 testWrongArgumentCount(Collections.<Class<?>>nCopies(i, int.class));
377 testWrongArgumentCount(Collections.<Class<?>>nCopies(i, long.class));
381 public void testWrongArgumentCount(List<Class<?>> params) throws Throwable { method in class:InvokeGenericTest
388 testWrongArgumentCount(params, params2);
389 testWrongArgumentCount(params2, params);
393 public void testWrongArgumentCount(List<Class<?>> expect, List<Class<?>> observe) throws Throwable { method in class:InvokeGenericTest

Completed in 39 milliseconds