85 lines
3.3 KiB
Python
85 lines
3.3 KiB
Python
# ***************************************************************************
|
|
# * Copyright (c) 2018 - FreeCAD Developers *
|
|
# * Author: Przemo Firszt <przemo@firszt.eu> *
|
|
# * Author: Bernd Hahnebach <bernd@bimstatik.org> *
|
|
# * *
|
|
# * 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 *
|
|
# * *
|
|
# ***************************************************************************/
|
|
|
|
|
|
# Unit test for the FEM module
|
|
# the order should be as follows:
|
|
# common-, object-, mesh-, inout-, ccxtools-, solverframworktests
|
|
from femtest.testcommon import FemTest
|
|
from femtest.testmesh import FemMeshTest
|
|
from femtest.testccxtools import FemCcxAnalysisTest
|
|
from femtest.testsolverframework import SolverFrameWorkTest
|
|
|
|
|
|
'''
|
|
for more information on how to run a specific test class or a test def see
|
|
file src/Mod/Test/__init__
|
|
https://forum.freecadweb.org/viewtopic.php?f=10&t=22190#p175546
|
|
|
|
|
|
|
|
examples from within FreeCAD:
|
|
|
|
# module
|
|
import Test, TestFem
|
|
Test.runTestsFromModule(TestFem)
|
|
|
|
import Test, femtest.testcommon
|
|
Test.runTestsFromModule(femtest.testcommon)
|
|
|
|
# class
|
|
import Test, TestFem
|
|
Test.runTestsFromClass(TestFem.FemTest)
|
|
|
|
import Test, femtest.testcommon
|
|
Test.runTestsFromClass(femtest.testcommon.FemTest)
|
|
|
|
# method
|
|
import unittest
|
|
mytest = unittest.TestLoader().loadTestsFromName("TestFem.FemTest.test_pyimport_all_FEM_modules")
|
|
unittest.TextTestRunner().run(mytest)
|
|
|
|
import unittest
|
|
mytest = unittest.TestLoader().loadTestsFromName("TestFem.FemTest.test_femobjects_make")
|
|
unittest.TextTestRunner().run(mytest)
|
|
|
|
# it may be useful to temporary comment FreeCAD.closeDocument("FemTest") in tearDown method to not close the document
|
|
|
|
examples from shell in build dir:
|
|
|
|
./bin/FreeCAD --run-test "TestFem"
|
|
|
|
./bin/FreeCAD --run-test "TestFem.FemTest"
|
|
|
|
./bin/FreeCAD --run-test "TestFem.FemTest.test_pyimport_all_FEM_modules"
|
|
|
|
|
|
|
|
|
|
to run all FreeCAD tests from shell:
|
|
|
|
./bin/FreeCAD --run-test 0
|
|
'''
|