Define conditions and actions to automatically generate a comprehensive decision table with all combinations.
Add the conditions (input conditions) for your test target
Add the results (actions) for each combination of conditions
Auto-generate all combinations and configure the actions for each rule
With N conditions, all combinations result in 2^N rules (max 10 conditions)
A decision table is a test design technique that comprehensively organizes actions for all combinations of multiple conditions. This tool automatically generates all combination rules by simply defining conditions and actions, and supports export in CSV and Markdown formats.
A decision table is a tabular representation that comprehensively describes what actions to take for each combination of multiple conditions. It is widely used as one of the software test design techniques.
Y (Yes) means the condition is true, N (No) means the condition is false, and - (Don't care) means the condition's value does not affect the outcome.
Up to 10 conditions (1,024 rules) are supported. As the number of conditions increases, the number of combinations grows exponentially, so narrow down the rules as needed.