diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-15 10:06:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-15 10:06:56 +0200 |
commit | 05a940f993dfdd9546c8108526a483c1d6e6377c (patch) | |
tree | f7003ecfa59c8db0ae16355a7dd1ad50857b4ee0 /sc | |
parent | 065a1aa0f0aad5a26c8c1dc2c74799ea6d8560f3 (diff) |
testContentXLSXStrict was left out by accident?
...and completely comment out commented-out testContentXLS_XML
Change-Id: I24d149bb7b16d1d36b388a39e719b6b9ead142c2
Diffstat (limited to 'sc')
-rw-r--r-- | sc/qa/unit/filters-test.cxx | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/sc/qa/unit/filters-test.cxx b/sc/qa/unit/filters-test.cxx index 43692b5e0fdd..07f3fa249312 100644 --- a/sc/qa/unit/filters-test.cxx +++ b/sc/qa/unit/filters-test.cxx @@ -66,7 +66,7 @@ public: void testContentXLSXStrict(); // strict OOXML void testContentLotus123(); void testContentDIF(); - void testContentXLS_XML(); + //void testContentXLS_XML(); void testSharedFormulaXLS(); void testSharedFormulaXLSX(); void testLegacyCellAnchoredRotatedShape(); @@ -79,6 +79,7 @@ public: CPPUNIT_TEST(testContentODS); CPPUNIT_TEST(testContentXLS); CPPUNIT_TEST(testContentXLSX); + CPPUNIT_TEST(testContentXLSXStrict); CPPUNIT_TEST(testContentLotus123); CPPUNIT_TEST(testContentDIF); //CPPUNIT_TEST(testContentXLS_XML); @@ -278,16 +279,16 @@ void ScFiltersTest::testContentDIF() xDocSh->DoClose(); } -void ScFiltersTest::testContentXLS_XML() -{ - ScDocShellRef xDocSh = loadDoc("universal-content.", XLS_XML); - CPPUNIT_ASSERT(xDocSh); - - ScDocument* pDoc = xDocSh->GetDocument(); - CPPUNIT_ASSERT(pDoc); - testContentImpl(pDoc, XLS_XML); - xDocSh->DoClose(); -} +// void ScFiltersTest::testContentXLS_XML() +// { +// ScDocShellRef xDocSh = loadDoc("universal-content.", XLS_XML); +// CPPUNIT_ASSERT(xDocSh); +// +// ScDocument* pDoc = xDocSh->GetDocument(); +// CPPUNIT_ASSERT(pDoc); +// testContentImpl(pDoc, XLS_XML); +// xDocSh->DoClose(); +// } void ScFiltersTest::testSharedFormulaXLS() { |