102103104105106107108109110111112
private void runTest(String specification) { try { new SerializerTest(serializer, DEFAULT_PACKAGE, specification).runTest(); } catch (Exception e) { fail(e.getMessage()); }
8889909192939495969798
private void runTest(Serializer serializer, String specification) { try { new SerializerTest(serializer, DEFAULT_PACKAGE, specification).runTest(); } catch (Exception e) { fail(e.getMessage()); }
184185186187188189190191192193194