π IS_EQUAL / NOT_EQUAL Unit Tests: BooleanType π΄π’
- Contextual name: π BooleanType π΄π’
- ID:
/ce/unit-test/is-equal/boolean
- Located in: π IS_EQUAL / NOT_EQUAL Unit Tests
Flagsβ
- π΄ Policy with todo.md
- π’ Unit-test policy
Logicβ
- π§ unit-test.logic.yaml π’
- π AWS EC2 Instance
- π§ͺ test-data.json
TODO π΄β
TODOβ
Currently
false != null
and at the same timetrue != null
.In case of Salesforce field values, only Checkbox fields return Boolean values. And they do not return
null
as value, if the checkbox is unchecked the values is going to befalse
. But in general and for future proofing, maybe current approach is not the best.
- Investigate whether moving from
false != null
tofalse == null
is better.