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>
This commit is contained in:
slideon 2016-04-11 13:48:54 -04:00 committed by jan iversen
parent 7c99b5586d
commit 7f29612cf0

View file

@ -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()