(t *testing.T)
| 181 | } |
| 182 | |
| 183 | func TestSimpleRejectedThreadStatus(t *testing.T) { |
| 184 | resolved := false |
| 185 | simpleThread := CommentThread{ |
| 186 | Comment: comment.Comment{ |
| 187 | Resolved: &resolved, |
| 188 | }, |
| 189 | } |
| 190 | simpleThread.updateResolvedStatus() |
| 191 | simpleThread.validateRejected(t) |
| 192 | } |
| 193 | |
| 194 | func TestFYIThenAcceptedThreadStatus(t *testing.T) { |
| 195 | accepted := true |
nothing calls this directly
no test coverage detected