(t *testing.T)
| 170 | } |
| 171 | |
| 172 | func TestSimpleAcceptedThreadStatus(t *testing.T) { |
| 173 | resolved := true |
| 174 | simpleThread := CommentThread{ |
| 175 | Comment: comment.Comment{ |
| 176 | Resolved: &resolved, |
| 177 | }, |
| 178 | } |
| 179 | simpleThread.updateResolvedStatus() |
| 180 | simpleThread.validateAccepted(t) |
| 181 | } |
| 182 | |
| 183 | func TestSimpleRejectedThreadStatus(t *testing.T) { |
| 184 | resolved := false |
nothing calls this directly
no test coverage detected