testMap.put("booleanValue", Boolean.TRUE);
testMap.put("stringValue", LIFE_IS_BEAUTIFUL);
testMap.put("longValue", TEN);
MapFormWriter mapWriter = new MapFormWriter();
mapWriter.writeForm(mapForm, testMap);
assertTrue("Boolean value written properly", mapForm.getValueByFullName("booleanValue").equals(Boolean.TRUE));
assertTrue("String value written properly", mapForm.getValueByFullName("stringValue").equals(LIFE_IS_BEAUTIFUL));
assertTrue("Long value written properly", mapForm.getValueByFullName("longValue").equals(TEN));
}