context = new DefaultMarshallingContext(new DefaultConverterLookup(), streamWriter);
}
public void testCanApplyList() throws Exception {
CollectionConverter s = new CollectionConverter();
assertTrue(s.canConvert(ArrayList.class));
assertTrue(s.canConvert(LinkedList.class));
assertFalse(s.canConvert(String.class));
}
public void testStringList() throws Exception {