[Libreoffice-commits] core.git: sw/qa

Miklos Vajna vmiklos at suse.cz
Tue May 14 02:00:52 PDT 2013


 sw/qa/extras/ooxmlimport/ooxmlimport.cxx |   10 ++++++++++
 1 file changed, 10 insertions(+)

New commits:
commit a3e4b1e91fe62f8df0311751eafb8ba217710d6e
Author: Miklos Vajna <vmiklos at suse.cz>
Date:   Tue May 14 10:57:10 2013 +0200

    testcase for becb244b4974609b0570e8db27d74e7e1179181c
    
    Change-Id: I37df8d6d5cbc9b37fa03681e8dc32a4926cd42a9

diff --git a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
index 8c64063..e9f4839 100644
--- a/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
+++ b/sw/qa/extras/ooxmlimport/ooxmlimport.cxx
@@ -20,6 +20,7 @@
 #include <com/sun/star/text/TextContentAnchorType.hpp>
 #include <com/sun/star/text/VertOrientation.hpp>
 #include <com/sun/star/text/WrapTextMode.hpp>
+#include <com/sun/star/text/WritingMode2.hpp>
 #include <com/sun/star/text/XDependentTextField.hpp>
 #include <com/sun/star/text/XFormField.hpp>
 #include <com/sun/star/text/XPageCursor.hpp>
@@ -111,6 +112,7 @@ public:
     void testN592908_Frame();
     void testN592908_Picture();
     void testN779630();
+    void testIndentation();
 
     CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX) && !defined(WNT)
@@ -191,6 +193,7 @@ void Test::run()
         {"n592908-frame.docx", &Test::testN592908_Frame},
         {"n592908-picture.docx", &Test::testN592908_Picture},
         {"n779630.docx", &Test::testN779630},
+        {"indentation.docx", &Test::testIndentation},
     };
     header();
     for (unsigned int i = 0; i < SAL_N_ELEMENTS(aMethods); ++i)
@@ -1369,6 +1372,13 @@ void Test::testN779630()
     CPPUNIT_ASSERT_EQUAL(true, bool(getProperty<sal_Bool>(xPropertySet, "Dropdown")));
 }
 
+void Test::testIndentation()
+{
+    uno::Reference<beans::XPropertySet> xPropertySet(getStyles("ParagraphStyles")->getByName("Standard"), uno::UNO_QUERY);
+    // This was RL_TB (e.g. right-to-left).
+    CPPUNIT_ASSERT_EQUAL(text::WritingMode2::LR_TB, getProperty<sal_Int16>(xPropertySet, "WritingMode"));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();


More information about the Libreoffice-commits mailing list