writableTypeToJson(new ArrayWritable(new String[] { "one", "two" }));
}
@Test
public void testMap() {
LinkedMapWritable map = new LinkedMapWritable();
map.put(new Text("key"), new IntWritable(1));
map.put(new BooleanWritable(Boolean.TRUE), new ArrayWritable(new String[] { "one", "two" }));
writableTypeToJson(map);
}