(path, summary, description string)
| 151 | } |
| 152 | |
| 153 | func (ts *TestScore) AddComment(path, summary, description string) { |
| 154 | ts.Comments = append(ts.Comments, TestScoreComment{ |
| 155 | Path: path, |
| 156 | Summary: summary, |
| 157 | Description: description, |
| 158 | }) |
| 159 | } |
| 160 | |
| 161 | func (ts *TestScore) AddCommentWithURL(path, summary, description, documentationURL string) { |
| 162 | ts.Comments = append(ts.Comments, TestScoreComment{ |
no outgoing calls
no test coverage detected