147148149150151152153154155156157
Method iftest = clazz.getMethod("iftest_", IntPtr.class, IntPtr.class); IntPtr x = new IntPtr(0); iftest.invoke(null, new IntPtr(12), x); assertThat(x.unwrap(), equalTo(1)); } @Test public void chars() throws Exception {