-
Sub-task
-
Resolution: Won't Do
-
Minor
-
None
-
7.0.0.CR2
-
NEW
-
NEW
The feature of detecting impossible match stopped to work for condition columns that uses operators less than and greater than. If the condition columns uses equality operator, then the impossible match is detected.
Steps to reproduce:
- Create Guided Decision Table
- Create two columns that do check like: p : Person(name == [value])
- Append row into table
- In first column check that name equals to "John"
- In second column check that name equals to "john"
- Impossible match is detected in this case
- Create another Guided Decision table
- Create one column that do check like: p : Person(age < [value])
- Create other column that do check like: p : Person(age > [value])
- Append row into the table
- Check that age is less than 10 in first column
- Check that age is greater than 20 in second column
- Impossible match is not thrown, but it is expected