Testing/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
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]]


Line 7: Line 11:
Esta es la lista de aplicaciones de prueba a partir de 0.15 Git 4207:
Esta es la lista de aplicaciones de prueba a partir de 0.15 Git 4207:
</div>
</div>

{{TOCright}}
{{TOCright}}

<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
FreeCAD incorpora un extenso entorno de pruebas. Las pruebas se basan en un conjunto de archivos de guión de Python ubicados en el módulo test.
FreeCAD incorpora un extenso entorno de pruebas. Las pruebas se basan en un conjunto de archivos de guión de Python ubicados en el módulo test.
Line 15: Line 21:


Run all tests:
Run all tests:

{{Code|code=
{{Code|code=
freecad --run-test 0
freecad --run-test 0
Line 20: Line 27:


Run only some the specified unit test, for example:
Run only some the specified unit test, for example:

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

Revision as of 11:35, 22 October 2019

Introducción

Esta es la lista de aplicaciones de prueba a partir de 0.15 Git 4207:

FreeCAD incorpora un extenso entorno de pruebas. Las pruebas se basan en un conjunto de archivos de guión de Python ubicados en el módulo test.

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