assertTrue("Failed not equals test ", !proxy.equals(""));
int[] result = (int[]) proxy.array(new long[] { 100L, -200L });
assertEquals("Failed base type conversion test ", -200, result[0]);
try {
proxy.string("");
fail("Problem converting exception");
} catch (Support_Proxy_SubException e) {
}
try {