Testing/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "== Введение == FreeCAD поставляется с обширным модулем тестирования. Тестирование основано на набор...")
(Updating to match new version of source page)
(26 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
{{Docnav
|[[Debugging|Debugging]]
|[[Continuous Integration|Continuous Integration]]
}}

[[Image:Workbench_Test.svg|thumb|128px|Test workbench icon]]

<div class="mw-translate-fuzzy">
== Введение ==
== Введение ==
Это список тестовых приложений на 0.15 Git 4207:
</div>

{{TOCright}}

<div class="mw-translate-fuzzy">
FreeCAD поставляется с обширным модулем тестирования. Тестирование основано на наборе Python сценариев расположенных в тестовом(test) модуле.
FreeCAD поставляется с обширным модулем тестирования. Тестирование основано на наборе Python сценариев расположенных в тестовом(test) модуле.
</div>


You can run the tests from the command line, by using the {{incode|-t}} or {{incode|--run-test}} options.
{{docnav|Debugging|Branding}}


Run all tests:
[[Category:Developer Documentation]]


{{Code|code=
{{clear}}
freecad --run-test 0
<languages/>
}}

Run only some the specified unit test, for example:

{{Code|code=
freecad -t 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 ==
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

<div class="mw-translate-fuzzy">
{{docnav|Debugging|Continuous Integration}}
</div>

<!--T:21-->
{{Userdocnavi{{#translation:}}}}
[[Category:Developer Documentation{{#translation:}}]]
[[Category:Test Framework{{#translation:}}]]
[[Category:Workbenches{{#translation:}}]]
[[Category:Testing{{#translation:}}]]

Revision as of 22:37, 21 March 2020

Test workbench icon

Введение

Это список тестовых приложений на 0.15 Git 4207:

FreeCAD поставляется с обширным модулем тестирования. Тестирование основано на наборе Python сценариев расположенных в тестовом(test) модуле.

You can run the tests from the command line, by using the -t or --run-test options.

Run all tests:

freecad --run-test 0

Run only some the specified unit test, for example:

freecad -t 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

Debugging
Continuous Integration