Testing: Difference between revisions

From FreeCAD Documentation
(Added list of Available Test apps)
(Marked this version for translation)
(18 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
<translate>
<!--T:20-->
{{docnav|Debugging|Continuous Integration}}
</translate>
[[Image:Workbench_Test.svg|64px]]
<translate>
<translate>
== Introduction == <!--T:1-->
FreeCAD comes with an extensive testing framework. The testing bases on a set of Python scripts which are located in the test module.


== Introduction == <!--T:2-->
Here is the list of test apps as of 0.15 Git 4207:
</translate>
{{TOCright}}
<translate>
<!--T:1-->
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-->
TestAPP.All
You can run the tests from the command line.


<!--T:26-->
BaseTests
Run all tests:
</translate>
{{Code|code=
freecad --run-test 0
}}
<translate>


<!--T:27-->
UnitTests
Run only some the specified unit test, for example:
</translate>
{{Code|code=
freecad --run-test TestDraft
}}
<translate>


== Test functions == <!--T:19-->
Document
This is the list of test apps as of 0.15 git 4207:


=== TestAPP.All === <!--T:3-->
UnicodeTests
Add test function


=== BaseTests === <!--T:5-->
MeshTestsApp
Add test function


=== UnitTests === <!--T:6-->
TestSketcherApp
Add test function


=== Document === <!--T:7-->
TestPartApp
Add test function


=== UnicodeTests === <!--T:8-->
TestPartDesignApp
Add test function


=== MeshTestsApp === <!--T:9-->
Workbench
Add test function


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


=== TestSketcherApp === <!--T:10-->
Menu.MenuDeleteCases
Add test function


=== TestPartApp === <!--T:11-->
Menu.MenuCreateCases
Add test function


<!--T:2-->
=== TestPartDesignApp === <!--T:12-->
Add test function
{{docnav|Debugging|Branding}}


<!--T:3-->
=== Workbench === <!--T:13-->
Add test function

=== Menu === <!--T:14-->
Add test function

=== Menu.MenuDeleteCases === <!--T:15-->
Add test function

=== Menu.MenuCreateCases === <!--T:16-->
Add test function

<!--T:17-->
{{docnav|Debugging|Continuous Integration}}

<!--T:21-->
{{Userdocnavi}}

<!--T:22-->
[[Category:Developer Documentation]]
[[Category:Developer Documentation]]


<!--T:23-->
[[Category:Test Framework]]

<!--T:24-->
[[Category:Workbenches]]
</translate>
</translate>
{{clear}}
<languages/>

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