A blank cell for a primitive parameter fails the row
All 3 scenarios hold
Primitives cannot hold null — declare the boxed type instead if the column can be blank.
expected outcome
broken scenario
| Scenario | Input value | Parameter type | Error message? |
|---|---|---|---|
| A boolean column | boolean | Blank cell translates to null, but null cannot be assigned to primitive type boolean | |
| A numeric column | short | Blank cell translates to null, but null cannot be assigned to primitive type short | |
| A character column | char | Blank cell translates to null, but null cannot be assigned to primitive type char |