Arch: Added test suite

This commit is contained in:
Yorik van Havre
2013-08-15 19:24:28 -03:00
parent efe6abb54f
commit 578fefc9b1
6 changed files with 142 additions and 10 deletions

View File

@@ -22,6 +22,7 @@ SET(Arch_SRCS
ArchRoof.py
importWebGL.py
ArchSpace.py
TestArch.py
)
SOURCE_GROUP("" FILES ${Arch_SRCS})

53
src/Mod/Arch/TestArch.py Normal file
View File

@@ -0,0 +1,53 @@
# Unit test for the Arch module
#***************************************************************************
#* (c) Yorik van Havre <yorik@uncreated.net> 2013 *
#* *
#* This file is part of the FreeCAD CAx development system. *
#* *
#* This program is free software; you can redistribute it and/or modify *
#* it under the terms of the GNU Lesser General Public License (LGPL) *
#* as published by the Free Software Foundation; either version 2 of *
#* the License, or (at your option) any later version. *
#* for detail see the LICENCE text file. *
#* *
#* FreeCAD is distributed in the hope that it will be useful, *
#* but WITHOUT ANY WARRANTY; without even the implied warranty of *
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
#* GNU Library General Public License for more details. *
#* *
#* You should have received a copy of the GNU Library General Public *
#* License along with FreeCAD; if not, write to the Free Software *
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
#* USA *
#* *
#***************************************************************************/
import FreeCAD, os, unittest, FreeCADGui, Arch, Draft
class ArchTest(unittest.TestCase):
def setUp(self):
# setting a new document to hold the tests
if FreeCAD.ActiveDocument:
if FreeCAD.ActiveDocument.Name != "ArchTest":
FreeCAD.newDocument("ArchTest")
else:
FreeCAD.newDocument("ArchTest")
FreeCAD.setActiveDocument("ArchTest")
def testWall(self):
FreeCAD.Console.PrintLog ('Checking Arch Wall...\n')
l=Draft.makeLine(FreeCAD.Vector(0,0,0),FreeCAD.Vector(-2,0,0))
w = Arch.makeWall(l)
self.failUnless(w,"Arch Wall failed")
def testStructure(self):
FreeCAD.Console.PrintLog ('Checking Arch Structure...\n')
s = Arch.makeStructure(length=2,width=3,hright=5)
self.failUnless(s,"Arch Structure failed")
def tearDown(self):
FreeCAD.closeDocument("ArchTest")
pass