Verifies: SYS-REQ-044 [boundary]
(t *testing.T)
| 97 | |
| 98 | // Verifies: SYS-REQ-044 [boundary] |
| 99 | func TestRemoval2_TokenEnd_NoDelimiter(t *testing.T) { |
| 100 | // Input with no delimiter characters at all |
| 101 | result := tokenEnd([]byte("12345")) |
| 102 | if result != 5 { |
| 103 | t.Fatalf("tokenEnd(12345) = %d, want 5 (len)", result) |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | // Verifies: SYS-REQ-044 [boundary] |
| 108 | func TestRemoval2_TokenEnd_NeverReturnsNegative(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…