39404142434445
* @see com.intel.drl.test.SerializationTest#getData() */ protected Object[] getData() { return new Object[] { new GuardedObject(null, null), new GuardedObject("dsgdfg", null), new GuardedObject(new Integer(76547), new MyGuard(true)), }; }
50515253545556575859
((GuardedObject) test).getObject()); } public void testDisableGuard() throws Throwable { try { copySerializable(new GuardedObject(null, new MyGuard(false))); fail("Should not serialize if guard denies access"); } catch (SecurityException ok) {} }
38394041424344
49505152535455565758