(t *testing.T)
| 284 | if !consumed { |
| 285 | t.Error("topicLoadedMsg should be consumed") |
| 286 | } |
| 287 | if !v.inThread || v.topicID != 100 || v.topicName != "Test topic" { |
| 288 | t.Errorf("thread state = open:%v id:%d name:%q", v.inThread, v.topicID, v.topicName) |
| 289 | } |
| 290 | if v.requests.loading { |
| 291 | t.Error("loading should be false") |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | // A thread heads its messages with the centered subject, and a blank line |
| 296 | // separates each message header from the content under it. |
nothing calls this directly
no test coverage detected