Will begin with "-1" if negative integers are allowed (wrong), "1" otherwise (correct).
Will begin with "0" if zero is allowed (correct), "1" otherwise (wrong).
Expected result is that the illegal value is ignored (i.e. 1-2-3). It could be truncated (i.e. 2,3,4) or using a floating point real (2.5, 3.5, 4.5). Both would be an error.
Expected result is that the illegal value is ignored (i.e. 1,2,3). It could be mapped to "equivalent" integer (i.e. 3,4,5) or have its list style set to alpha (C,D,E). Both would be an error.
Will show "1,-1,0" if all integers are allowed (wrong), "1,2,3" otherwise (correct).
Will show "1,0,1" if zero is allowed (correct), "1,2,3" otherwise (wrong).
Expected result is that the illegal value is ignored (i.e. 1-2-3). It could be truncated (i.e. 2,3,4) or using a floating point real (2.5, 3.5, 4.5). Both would be an error.
Expected result is that the illegal value is ignored (i.e. 1-2-3). It can mapped to "equivalent" integer (i.e. 1,3,4) or have its list style set to alpha (A,C,E). Both would be an error.