now each module registers its unit tests itself

This commit is contained in:
wmayer
2018-08-28 13:14:16 +02:00
parent b4a4154556
commit 1d11f742ca
18 changed files with 53 additions and 54 deletions

View File

@@ -34,3 +34,5 @@ FreeCAD.addImportType("IGES format (*.iges *.igs)","Part")
FreeCAD.addExportType("IGES format (*.iges *.igs)","Part")
FreeCAD.addImportType("STEP with colors (*.step *.stp)","ImportGui")
FreeCAD.addExportType("STEP with colors (*.step *.stp)","ImportGui")
FreeCAD.__unit_test__ += [ "TestPartApp" ]

View File

@@ -60,3 +60,5 @@ class PartWorkbench ( Workbench ):
return "PartGui::Workbench"
Gui.addWorkbench(PartWorkbench())
FreeCAD.__unit_test__ += [ "TestPartGui" ]