============================================================================= REMOVAL 7: `ln > 0` guard removed in findKeyStart Verify nextToken returning non-negative guarantees len(data) > 0 ============================================================================= Verifies: SYS-REQ-001 [bounda
(t *testing.T)
| 529 | |
| 530 | // Verifies: SYS-REQ-001 [boundary] |
| 531 | func TestRemoval7_NextToken_EmptyInput(t *testing.T) { |
| 532 | result := nextToken([]byte{}) |
| 533 | if result != -1 { |
| 534 | t.Fatalf("nextToken([]) = %d, expected -1", result) |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | // Verifies: SYS-REQ-001 [boundary] |
| 539 | func TestRemoval7_NextToken_WhitespaceOnly(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…