n#777337 testcase

Also remove the #if 0 I forgot to remove previously.

Change-Id: I2cc5e1407c509414c8395d0fd63ab3b379bef04f
This commit is contained in:
Miklos Vajna
2012-08-30 09:11:58 +01:00
parent a474559ff1
commit dd11bca8ab
2 changed files with 18 additions and 2 deletions

Binary file not shown.

View File

@@ -88,10 +88,10 @@ public:
void testN775906(); void testN775906();
void testN775899(); void testN775899();
void testN777345(); void testN777345();
void testN777337();
CPPUNIT_TEST_SUITE(Test); CPPUNIT_TEST_SUITE(Test);
#if !defined(MACOSX) && !defined(WNT) #if !defined(MACOSX) && !defined(WNT)
#if 0
CPPUNIT_TEST(testN751054); CPPUNIT_TEST(testN751054);
CPPUNIT_TEST(testN751117); CPPUNIT_TEST(testN751117);
CPPUNIT_TEST(testN751017); CPPUNIT_TEST(testN751017);
@@ -118,8 +118,8 @@ public:
CPPUNIT_TEST(testAllGapsWord); CPPUNIT_TEST(testAllGapsWord);
CPPUNIT_TEST(testN775906); CPPUNIT_TEST(testN775906);
CPPUNIT_TEST(testN775899); CPPUNIT_TEST(testN775899);
#endif
CPPUNIT_TEST(testN777345); CPPUNIT_TEST(testN777345);
CPPUNIT_TEST(testN777337);
#endif #endif
CPPUNIT_TEST_SUITE_END(); CPPUNIT_TEST_SUITE_END();
@@ -785,6 +785,22 @@ void Test::testN777345()
CPPUNIT_ASSERT_EQUAL(sal_uLong(2404338915U), aGraphic.GetChecksum()); CPPUNIT_ASSERT_EQUAL(sal_uLong(2404338915U), aGraphic.GetChecksum());
} }
void Test::testN777337()
{
/*
* The problem was that the top and bottom margin on the first page was only 0.1cm instead of 1.7cm.
*
* oFirst = ThisComponent.StyleFamilies.PageStyles.getByName("First Page")
* xray oFirst.TopMargin
* xray oFirst.BottomMargin
*/
load("n777337.docx");
uno::Reference<beans::XPropertySet> xPropertySet(getStyles("PageStyles")->getByName("First Page"), uno::UNO_QUERY);
CPPUNIT_ASSERT_EQUAL(sal_Int32(1702), getProperty<sal_Int32>(xPropertySet, "TopMargin"));
CPPUNIT_ASSERT_EQUAL(sal_Int32(1702), getProperty<sal_Int32>(xPropertySet, "BottomMargin"));
}
CPPUNIT_TEST_SUITE_REGISTRATION(Test); CPPUNIT_TEST_SUITE_REGISTRATION(Test);
CPPUNIT_PLUGIN_IMPLEMENT(); CPPUNIT_PLUGIN_IMPLEMENT();