Testing: Difference between revisions

From FreeCAD Documentation
(=== TestDraft === Add test function)
(Marked this version for translation)
Line 14: Line 14:
The [[Test Framework Workbench]] is not really a modelling workbench, but it contains a set of [[Python]] scripts to perform different tests on the core components of FreeCAD, in order to debug problems. See also [[debugging]].
The [[Test Framework Workbench]] is not really a modelling workbench, but it contains a set of [[Python]] scripts to perform different tests on the core components of FreeCAD, in order to debug problems. See also [[debugging]].


<!--T:25-->
You can run the tests from the command line.
You can run the tests from the command line.


<!--T:26-->
Run all tests:
Run all tests:
</translate>
</translate>
Line 23: Line 25:
<translate>
<translate>


<!--T:27-->
Run only some the specified unit test, for example:
Run only some the specified unit test, for example:
</translate>
</translate>
Line 51: Line 54:
Add test function
Add test function


=== TestDraft ===
=== TestDraft === <!--T:28-->
Add test function
Add test function



Revision as of 20:49, 6 August 2019

Debugging
Continuous Integration

Introduction

The Test Framework Workbench is not really a modelling workbench, but it contains a set of Python scripts to perform different tests on the core components of FreeCAD, in order to debug problems. See also debugging.

You can run the tests from the command line.

Run all tests:

freecad --run-test 0

Run only some the specified unit test, for example:

freecad --run-test TestDraft

Test functions

This is the list of test apps as of 0.15 git 4207:

TestAPP.All

Add test function

BaseTests

Add test function

UnitTests

Add test function

Document

Add test function

UnicodeTests

Add test function

MeshTestsApp

Add test function

TestDraft

Add test function

TestSketcherApp

Add test function

TestPartApp

Add test function

TestPartDesignApp

Add test function

Workbench

Add test function

Menu

Add test function

Menu.MenuDeleteCases

Add test function

Menu.MenuCreateCases

Add test function

Debugging
Continuous Integration