Verifies: SYS-REQ-001 [boundary]
(t *testing.T)
| 537 | |
| 538 | // Verifies: SYS-REQ-001 [boundary] |
| 539 | func TestRemoval7_NextToken_WhitespaceOnly(t *testing.T) { |
| 540 | result := nextToken([]byte(" \t\n")) |
| 541 | if result != -1 { |
| 542 | t.Fatalf("nextToken(whitespace) = %d, expected -1", result) |
| 543 | } |
| 544 | } |
| 545 | |
| 546 | // Verifies: SYS-REQ-001 [boundary] |
| 547 | func TestRemoval7_FindKeyStart_NextTokenGuaranteesNonEmpty(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…