//The below is important when mapping number values to integer fields with DynamoDBMapper
@Test
public void integerFieldsShouldRemainIntegerOnAdd() throws Exception {
// Setup table with items
KeySchema schema = new KeySchema(new KeySchemaElement().withAttributeName("id").withAttributeType(ScalarAttributeType.S));
createTable(tableName, schema);
Map<String, AttributeValue> item = new HashMap<String, AttributeValue>();
item.put("id", new AttributeValue().withS("1"));
item.put("value", new AttributeValue().withN("1"));