File size: 1,007 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import FreeCAD
import unittest
from .TechDrawTestUtilities import createPageWithSVGTemplate
class DrawViewAnnotationTest(unittest.TestCase):
def setUp(self):
"""Creates a page"""
FreeCAD.newDocument("TDAnno")
FreeCAD.setActiveDocument("TDAnno")
FreeCAD.ActiveDocument = FreeCAD.getDocument("TDAnno")
self.page = createPageWithSVGTemplate()
def tearDown(self):
FreeCAD.closeDocument("TDAnno")
def testMakeAnnotation(self):
"""Tests if an annotation can be added to page"""
anno = FreeCAD.ActiveDocument.addObject(
"TechDraw::DrawViewAnnotation", "TestAnno"
)
s = "Different Text"
sl = list()
sl.append(s)
anno.Text = sl
anno.TextStyle = "Bold"
self.page.addView(anno)
anno.X = 30.0
anno.Y = 150.0
FreeCAD.ActiveDocument.recompute()
self.assertTrue("Up-to-date" in anno.State)
if __name__ == "__main__":
unittest.main()
|