CellUtil.setCellStyleProperties(cell, properties);
}
assertEquals(color, cell.getCellStyle().getFillForegroundColorColor());
+ assertEquals(FillPatternType.SOLID_FOREGROUND, cell.getCellStyle().getFillPattern());
{
final Map<String, Object> properties = new LinkedHashMap<>();
}
assertNull(cell.getCellStyle().getFillForegroundColorColor());
assertEquals(IndexedColors.AUTOMATIC.getIndex(), cell.getCellStyle().getFillForegroundColor());
+ assertEquals(FillPatternType.NO_FILL, cell.getCellStyle().getFillPattern());
}
}
}
\ No newline at end of file