Testing: Difference between revisions

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


== Introduction == <!--T:2-->
{{docnav|Debugging|Branding}}
</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-->
{{languages | {{es|Testing/es}} {{it|Testing/it}} {{ru|Testing/ru}} {{se|Testing/se}} }}
You can run the tests from the command line.


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

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

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

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

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

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

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

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

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

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

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

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

=== TestPartDesignApp === <!--T:12-->
Add test function

=== 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>

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