summaryrefslogtreecommitdiffstats
path: root/sc/qa/unit/subsequent_export-test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/qa/unit/subsequent_export-test.cxx')
-rw-r--r--sc/qa/unit/subsequent_export-test.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/sc/qa/unit/subsequent_export-test.cxx b/sc/qa/unit/subsequent_export-test.cxx
index 382e2b9d02dc..f54cb966bacc 100644
--- a/sc/qa/unit/subsequent_export-test.cxx
+++ b/sc/qa/unit/subsequent_export-test.cxx
@@ -144,6 +144,7 @@ public:
void testFormulaReferenceXLS();
void testSheetProtectionXLSX();
+ void testTdf145057();
void testSheetProtectionXLSB();
void testCellBordersXLS();
@@ -296,6 +297,7 @@ public:
CPPUNIT_TEST(testFormulaReferenceXLS);
CPPUNIT_TEST(testSheetProtectionXLSX);
+ CPPUNIT_TEST(testTdf145057);
CPPUNIT_TEST(testSheetProtectionXLSB);
CPPUNIT_TEST(testCellBordersXLS);
CPPUNIT_TEST(testCellBordersXLSX);
@@ -2261,6 +2263,17 @@ void ScExportTest::testSheetProtectionXLSX()
xDocSh->DoClose();
}
+void ScExportTest::testTdf145057()
+{
+ ScDocShellRef xDocSh = loadDoc(u"tdf145057.", FORMAT_XLSX);
+ CPPUNIT_ASSERT(xDocSh.is());
+ xDocSh = saveAndReload(xDocSh.get(), FORMAT_XLSX);
+ xmlDocPtr pDoc = XPathHelper::parseExport2(*this, *xDocSh, m_xSFactory,
+ "xl/tables/table1.xml", FORMAT_XLSX);
+ CPPUNIT_ASSERT(pDoc);
+ assertXPath(pDoc, "//x:colorFilter", "dxfId", "1");
+}
+
void ScExportTest::testSheetProtectionXLSB()
{
ScDocShellRef xShell = loadDoc("tdf108017_calcProtection.", FORMAT_XLSB);