git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903646 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2022-08-23 19:32:24 +00:00
parent c13c147446
commit 8d9d916ecd
1 changed files with 8 additions and 0 deletions

View File

@ -640,6 +640,14 @@ public final class TestSXSSFWorkbook extends BaseTestXWorkbook {
}
}
@Test
void getStylesSource() throws IOException {
try (SXSSFWorkbook workbook = new SXSSFWorkbook()) {
assertNotNull(workbook.getXSSFWorkbook().getStylesSource(), "style source available");
assertNotNull(workbook.getXSSFWorkbook().getStylesSource().getIndexedColors(), "indexed colors available");
}
}
@Override
@Disabled("not implemented")
protected void changeSheetNameWithSharedFormulas() {