diff options
Diffstat (limited to 'sd/qa/unit/import-tests.cxx')
-rw-r--r-- | sd/qa/unit/import-tests.cxx | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/sd/qa/unit/import-tests.cxx b/sd/qa/unit/import-tests.cxx index 356cc99859a2..7323fd300718 100644 --- a/sd/qa/unit/import-tests.cxx +++ b/sd/qa/unit/import-tests.cxx @@ -180,7 +180,6 @@ public: void testTdf115394(); void testTdf115394PPT(); void testTdf51340(); - void testTdf115639(); void testTdf116899(); void testTdf77747(); void testTdf116266(); @@ -267,7 +266,6 @@ public: CPPUNIT_TEST(testTdf115394); CPPUNIT_TEST(testTdf115394PPT); CPPUNIT_TEST(testTdf51340); - CPPUNIT_TEST(testTdf115639); CPPUNIT_TEST(testTdf116899); CPPUNIT_TEST(testTdf77747); CPPUNIT_TEST(testTdf116266); @@ -2462,36 +2460,6 @@ void SdImportTest::testTdf51340() xDocShRef->DoClose(); } -void SdImportTest::testTdf115639() -{ - // Check whether the new compatibility option is loaded correctly - // For PPTX we have the flag enabled by default - { - sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/pptx/tdf115639.pptx"), PPTX); - SdDrawDocument *pDoc = xDocShRef->GetDoc(); - CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != nullptr ); - CPPUNIT_ASSERT( pDoc->IsHoriAlignIgnoreTrailingWhitespace() ); - } - - // For PPT we have the flag enabled by default - { - sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/ppt/tdf115639.ppt"), PPT); - SdDrawDocument *pDoc = xDocShRef->GetDoc(); - CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != nullptr ); - CPPUNIT_ASSERT( pDoc->IsHoriAlignIgnoreTrailingWhitespace() ); - xDocShRef->DoClose(); - } - - // For ODP we have the flag disabled by default - { - sd::DrawDocShellRef xDocShRef = loadURL(m_directories.getURLFromSrc("/sd/qa/unit/data/odp/tdf115639.odp"), ODP); - SdDrawDocument *pDoc = xDocShRef->GetDoc(); - CPPUNIT_ASSERT_MESSAGE( "no document", pDoc != nullptr ); - CPPUNIT_ASSERT( !pDoc->IsHoriAlignIgnoreTrailingWhitespace() ); - xDocShRef->DoClose(); - } -} - void SdImportTest::testTdf116899() { // This is a PPT created in Impress and roundtripped in PP, the key times become [1, -1] in PP, |