assertEquals(2, beanJsonConverter.convertToObject("[\"a\",\"b\"]", String[].class).length);
}
public void testException() {
// a bit brain dead, but makes certain the exception is available in all forms
assertNotNull(new BeanJsonLibConversionException());
assertNotNull(new BeanJsonLibConversionException("message"));
assertNotNull(new BeanJsonLibConversionException(new Exception()));
assertNotNull(new BeanJsonLibConversionException("message", new Exception()));
}