@Test
@SuppressWarnings("unchecked")
public void testConvertWhenIncreasingValue() {
PartialUpdate update = new PartialUpdate("id", "1");
update.increaseValueOfField("field_1", 1);
SolrInputDocument document = converter.convert(update);
Assert.assertTrue(document.getFieldValue("field_1") instanceof Map);
Assert.assertEquals(1, ((Map<String, Object>) document.getFieldValue("field_1")).get("inc"));