Verifies: SYS-REQ-015
(t *testing.T)
| 2446 | |
| 2447 | // Verifies: SYS-REQ-015 |
| 2448 | func TestParseIntSignOnly_KI2(t *testing.T) { |
| 2449 | if _, err := ParseInt([]byte("-")); err == nil { |
| 2450 | t.Fatal(`ParseInt("-") returned nil error, want malformed-value error`) |
| 2451 | } |
| 2452 | } |
| 2453 | |
| 2454 | // Verifies: SYS-REQ-110 |
| 2455 | func TestSetTopLevelArrayAppend_KI4(t *testing.T) { |
nothing calls this directly
no test coverage detected