Testing/tr: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{docnav
{{docnav|Debugging|Continuous Integration}}
|[[Debugging|Debugging]]
|[[Continuous Integration|Continuous Integration]]
}}

[[Image:Workbench_Test.svg|64px]]
[[Image:Workbench_Test.svg|64px]]


== Introduction ==
== Introduction ==

{{TOCright}}
{{TOCright}}


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|Test Framework Workbench]] is not really a modelling workbench, but it contains a set of [[Python|Python]] scripts to perform different tests on the core components of FreeCAD, in order to debug problems. See also [[debugging|debugging]].

You can run the tests from the command line.

Run all tests:

{{Code|code=
freecad --run-test 0
}}

Run only some the specified unit test, for example:

{{Code|code=
freecad --run-test TestDraft
}}

== Test menu ==

Each top level directory in FreeCAD should have a file with the tests that can be run for that particular workbench or module. The file usually starts with the word {{incode|Test}}.

To run a test from within FreeCAD, switch to the Test Workbench, then {{MenuCommand|Test commands → TestToolsGui → Self test → Select test name}}, then enter the name of the Python file with the tests; for example, for the [[Draft Workbench|Draft Workbench]], this would be {{MenuCommand|TestDraft}}, then press {{Button|Start}}.


== Test functions ==
== Test functions ==
Line 27: Line 52:


=== MeshTestsApp ===
=== MeshTestsApp ===
Add test function

=== TestDraft ===
Add test function
Add test function


Line 50: Line 78:
Add test function
Add test function


{{docnav
{{docnav|Debugging|Continuous Integration}}
|[[Debugging|Debugging]]
|[[Continuous Integration|Continuous Integration]]
}}


{{Userdocnavi}}
{{Userdocnavi}}
Line 59: Line 90:


[[Category:Workbenches]]
[[Category:Workbenches]]
[[Category:Testing]]

Revision as of 09:59, 29 October 2019

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 menu

Each top level directory in FreeCAD should have a file with the tests that can be run for that particular workbench or module. The file usually starts with the word Test.

To run a test from within FreeCAD, switch to the Test Workbench, then Test commands → TestToolsGui → Self test → Select test name, then enter the name of the Python file with the tests; for example, for the Draft Workbench, this would be TestDraft, then press Start.

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