(t *testing.T)
| 181 | } |
| 182 | |
| 183 | func TestUnseenInvalidID(t *testing.T) { |
| 184 | server := seenServer(t) |
| 185 | defer server.Close() |
| 186 | |
| 187 | _, err := runUnseen(t, server, "abc") |
| 188 | if err == nil { |
| 189 | t.Fatal("expected error for non-numeric ID") |
| 190 | } |
| 191 | } |
nothing calls this directly
no test coverage detected