| // this is data case file for int> type, contains normal, corner, exceptional data cases |
| [] |
| [null] |
| NULL |
| // single element |
| [0] |
| // int min/max value |
| [-2147483648, 2147483647] |
| // int min/max value + 1 (异常) |
| [-2147483647, 2147483648] |
| // int min/max value - 1 (异常) |
| [-2147483649, 2147483646] |
| // int -1-16 |
| [-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] |
| // int 0-16 with null |
| [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, null, 11, 12, 13, 14, 15, 16] |
| // sqrt(max) + 1 |
| [46341, 46342] |
| // all data contains below |
| [null, -2147483648, -2147483647, -2147483649, -2147483646, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 46341, 46342] |