@Test
public void testGetMethod() throws Exception {
final Method foo = A.class.getMethod("foo", String.class, Integer.TYPE, String[].class, int[].class,
String[].class);
final MethodSerializationWrapper wrapper = new MethodSerializationWrapper(foo);
assertEquals(foo, wrapper.getMethod());
}