summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorslideon <adamkasztenny@gmail.com>2016-04-11 13:48:54 -0400
committerjan iversen <jani@documentfoundation.org>2016-04-12 06:37:39 +0000
commit7f29612cf010c89d5d2dffd4c868a79ad6f9897c (patch)
tree694c2288ce898ab68cb7ab9278b9dc1bb911eb86
parent7c99b5586d7cb145079129470fdbf720399eee3c (diff)
Add other tests to check_change_color
Add tests for GridColor and FootnoteLineColor Change-Id: Ia1112cbff5fd77ae1fa83fac362e917eb35f530d Reviewed-on: https://gerrit.libreoffice.org/24001 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: jan iversen <jani@documentfoundation.org>
-rw-r--r--sw/qa/python/check_change_color.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/sw/qa/python/check_change_color.py b/sw/qa/python/check_change_color.py
index d0700f104f7c..a835bc254bbf 100644
--- a/sw/qa/python/check_change_color.py
+++ b/sw/qa/python/check_change_color.py
@@ -1,6 +1,7 @@
import unittest
from org.libreoffice.unotest import UnoInProcess
+
class CheckChangeColor(unittest.TestCase):
@classmethod
@@ -25,5 +26,11 @@ class CheckChangeColor(unittest.TestCase):
self.assertEqual(xPageStyle.BackColor, 0x000000FF)
self.assertEqual(xPageStyle.IsLandscape, True)
+ xPageStyle.setPropertyValue("GridColor", 0x000000FF)
+ self.assertEqual(xPageStyle.GridColor, 0x000000FF)
+
+ xPageStyle.setPropertyValue("FootnoteLineColor", 0x000000FF)
+ self.assertEqual(xPageStyle.FootnoteLineColor, 0x000000FF)
+
if __name__ == '__main__':
unittest.main()