(Grade A+)
Question 1:
Automated test design (CRT)
Answer:
In Copado Robotic Testing, automated test design lets you configure reusable templates (defect, risk,
and business-process scenarios) that can be reused across multiple projects.
Question 2:
Two automated test generators in CRT
Answer:
Test Data Generator and Combinatorial Test Generator.
Question 3:
Enable test generation (how)
Answer:
Add the special tag `testgen` to the test case under `[Tags]` to activate test generation.
Question 4:
Is test generation enabled by default?
Answer:
No. You must explicitly enable it (e.g., by adding the `testgen` tag).
Question 5:
Purpose of the `testgen` tag
Answer:
It tells CRT which test cases should generate additional test cases (instead of running only one static
dataset).
Question 6:
Set a target number of generated tests
Answer:
Use the `numtests=<number>` directive/tag to set the target number of test cases to generate for that
test.
Question 7:
Default recommended target number
Answer:
The module recommends providing a target number; by default it is set to 100 (you can change it).
, Question 8:
What happens if `numtests` is set too low?
Answer:
CRT can override the target when the target is lower than the absolute minimum needed to meet all
required combinations/coverage.
Question 9:
Test generation modes mentioned
Answer:
Linear mode and Nwise mode.
Question 10:
Linear mode (what it does)
Answer:
Disables combinatorial testing and uses a linear selection approach where each data value is tested at
least once (often pairing values by position).
Question 11:
When you'd use Linear mode
Answer:
When you want simple coverage of each value without exploring interactions between multiple
parameters.
Question 12:
Nwise mode (what it does)
Answer:
Enables combinatorial test data generation; `nwise=<n>` defines how many variables interact in
combinations (e.g., pairwise when `n=2`).
Question 13:
Pairwise testing in CRT
Answer:
Pairwise testing is Nwise mode with `nwise=2`, focusing on interactions between every pair of
parameters.
Question 14:
Combinatorial testing (definition)
Answer:
A testing method that generates multiple data combinations to detect issues that appear from
interactions of two or more parameters.