Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
codebase:testing [2024/09/28 22:56] – fponzi | codebase:testing [2025/03/25 10:49] (current) – fponzi | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
+ | You will need ant build system. '' | ||
+ | |||
+ | ===== customBuild.xml common commands ==== | ||
+ | * compile: recompiles the production code for project. Required if you changed any code in src folder. | ||
+ | * compile-test: | ||
+ | * test-set: by using the parameter '' | ||
+ | Example: | ||
+ | < | ||
+ | ant -f customBuild.xml compile compile-test test-set -Dtest.testcases=" | ||
+ | </ | ||
+ | |||
+ | ===== Running a test with a debugger ===== | ||
+ | |||
+ | '' | ||
+ | |||
+ | < | ||
+ | ant -f customBuild.xml compile-test test-set -Dtest.suspend=y -Dtest.testcases=" | ||
+ | </ | ||
+ | |||
+ | ===== Specify number of threads ===== | ||
+ | |||
+ | By default uses all your cores. You can specify a custom amount using '' | ||
+ | |||
+ | < | ||
+ | ant -f customBuild.xml test -Dthreads=4 | ||
+ | </ | ||
+ | |||
+ | ===== Halt tests when a failure is found ===== | ||
+ | |||
+ | By default the test target will run all the test and report success or failure only at the end. It can be convinient to just stop execution as soon as an error is found, with'' | ||
+ | |||
+ | < | ||
+ | ant -f customBuild.xml test -Dtest.halt=true | ||
+ | </ | ||
===== test-dist: ===== | ===== test-dist: ===== |