TechDraw: add Balloons

This commit is contained in:
Franck Jullien
2019-03-11 22:37:06 +01:00
committed by wmayer
parent 0305555d52
commit c5942d6a78
32 changed files with 1864 additions and 5 deletions

View File

@@ -31,6 +31,7 @@ from TDTest.DVAnnoSymImageTest import DVAnnoSymImageTest
from TDTest.DVDimensionTest import DVDimensionTest
from TDTest.DVPartTest import DVPartTest
from TDTest.DVSectionTest import DVSectionTest
from TDTest.DVBalloonTest import DVBalloonTest
#---------------------------------------------------------------------------
# define the test cases to test the FreeCAD TechDraw module
@@ -86,3 +87,10 @@ class TechDrawTestCases(unittest.TestCase):
else:
print("TD DrawViewSection test failed")
def testBalloonCase(self):
print("starting TD DrawViewBalloon test")
rc = DVBalloonTest()
if rc:
print("TD DrawViewBalloon test passed")
else:
print("TD DrawViewBalloon test failed")