@Test
public void mapListConversion() {
final List<CValue> list = new ArrayList<CValue>();
final Map<String, CValue> data = new HashMap<String, CValue>();
data.put("key", new CPrimitive("value"));
list.add(new CObject(data));
final List<Map<String, String>> convertedList = (List<Map<String, String>>) ValueConverterRegistry.convert(String.class,
String.class, new CArray(list));
Assert.assertNotNull(convertedList);