[TechDraw] Make annotation test a unittest
This commit is contained in:
committed by
WandererFan
parent
64f6249ee9
commit
a9a31ad3b8
38
src/Mod/TechDraw/TDTest/DrawViewAnnotationTest.py
Normal file
38
src/Mod/TechDraw/TDTest/DrawViewAnnotationTest.py
Normal file
@@ -0,0 +1,38 @@
|
||||
from __future__ import print_function
|
||||
|
||||
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()
|
||||
Reference in New Issue
Block a user