Add test for unsupported icon sets

This commit is contained in:
issa
2025-08-09 07:23:18 +09:00
parent 0327b49060
commit a3588b2c22
2 changed files with 7 additions and 0 deletions
@@ -76,5 +76,12 @@ class ConditionalIconSetTest extends AbstractFunctional
++$columnIndex;
}
// unsupported icon sets
for ($columnIndex = 'R'; $columnIndex <= 'U'; ++$columnIndex) {
$styles = $worksheet->getConditionalStyles("{$columnIndex}2:{$columnIndex}11");
$iconSet = $styles[0]->getIconSet();
self::assertNull($iconSet);
}
}
}