vmtest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionTest.java
changeset 420 3497ecd097df
parent 418 c0bbf144c2c6
child 448 ac05de5a8786
     1.1 --- a/vmtest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionTest.java	Tue Jan 08 16:01:25 2013 +0100
     1.2 +++ b/vmtest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionTest.java	Tue Jan 08 16:32:11 2013 +0100
     1.3 @@ -82,6 +82,9 @@
     1.4          final Class[] pt = plus.getParameterTypes();
     1.5          return pt[0].getName();
     1.6      }
     1.7 +    @Compare public String paramTypesNotFound() throws Exception {
     1.8 +        return StaticUse.class.getMethod("plus", int.class, double.class).toString();
     1.9 +    }
    1.10      @Compare public int methodWithArgs() throws Exception {
    1.11          Method plus = StaticUse.class.getMethod("plus", int.class, Integer.TYPE);
    1.12          return (Integer)plus.invoke(null, 2, 3);