Testing/ro

Test workbench icon

Introducere

Aceasta este lista de aplicații de testare de la 0,15 Git 4207:

FreeCAD vine cu un cadru vast de testare. Bazele de testare se bazează pe un set de scripturi. Îngrijirea Python se află în modulul de testare.

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

If a test does not need the GUI, it can also be executed in console mode by setting the -c or --console option in addition. This usually results in much faster startup time as the GUI is not loaded. For example:

freecad -c -t TestPartDesignApp

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

Adăugați funcția de testare

Add test function

BaseTests

Adăugați funcția de testare

Add test function

UnitTests

Adăugați funcția de testare

Add test function

Document

Adăugați funcția de testare

Add test function

UnicodeTests

Adăugați funcția de testare

Add test function

MeshTestsApp

Adăugați funcția de testare

Add test function

TestDraft

Add test function

TestSketcherApp

Adăugați funcția de testare

Add test function

TestPartApp

Adăugați funcția de testare

Add test function

TestPartDesignApp

Adăugați funcția de testare

Add test function

TestCAMApp

Path workbench test cases:

Workbench

Adăugați funcția de testare

Add test function

Meniu

Adăugați funcția de testare

Add test function

Menu.MenuDeleteCases

Adăugați funcția de testare

Add test function

Menu.MenuCreateCases

Adăugați funcția de testare

Add test function

Scripting

See also: FreeCAD Scripting Basics.

Get a list of all top-level test modules

FreeCAD.__unit_test__

Note that the test modules returned here depend on whether a GUI available or not. I.e. when executed in console mode, various tests ending in "Gui" are missing.

Run specific tests

There are various ways of running tests using Python's unittest library. FreeCAD's test framework removes some of the boiler plate for the most common cases.

Run all tests defined in a Python module:

import Test, TestFemApp
Test.runTestsFromModule(TestFemApp)

Run all tests defined in a Python class:

import Test, femtest.app.test_solver_calculix
Test.runTestsFromClass(femtest.app.test_solver_calculix.TestSolverCalculix)

Example 1

Within the Python Console of FreeCAD, the following code format may be used to run built-in tests. Replace the red "TestFem" text in the code below with the desired module test name.

import unittest
suite = unittest.TestSuite()
suite.addTest(unittest.defaultTestLoader.loadTestsFromName("TestFem"))
r = unittest.TextTestRunner()
r.run(suite)

Additional Resources

Forum Topics


Debugging
Continuous Integration
Index