(Object obj)
| 32 | } |
| 33 | |
| 34 | public static void runGadgets(Object obj)throws Exception{ |
| 35 | byte[] ser = serialize(obj); |
| 36 | deserialize(ser); |
| 37 | } |
| 38 | |
| 39 | public static byte[] serialize(final Object obj) throws IOException { |
| 40 | System.out.println("serialize obj: "+ obj.getClass().getName()); |
no test coverage detected