Verifies: SYS-REQ-001 [boundary]
(t *testing.T)
| 543 | |
| 544 | // Verifies: SYS-REQ-001 [boundary] |
| 545 | func TestRemoval7_NextToken_WhitespaceOnly(t *testing.T) { |
| 546 | result := nextToken([]byte(" \t\n")) |
| 547 | if result != -1 { |
| 548 | t.Fatalf("nextToken(whitespace) = %d, expected -1", result) |
| 549 | } |
| 550 | } |
| 551 | |
| 552 | // Verifies: SYS-REQ-001 [boundary] |
| 553 | func TestRemoval7_FindKeyStart_NextTokenGuaranteesNonEmpty(t *testing.T) { |
nothing calls this directly
no test coverage detected