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);
Assert.assertTrue(convertedList.size() == 1);
final Map<String, String> element = convertedList.get(0);
Assert.assertTrue(element.size() == 1);