(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func TestParseAcceptCommentErr(t *testing.T) { |
| 61 | t.Parallel() |
| 62 | |
| 63 | comment := `/@Accept unknown` |
| 64 | operation := NewOperation(nil) |
| 65 | err := operation.ParseComment(comment, nil) |
| 66 | assert.Error(t, err) |
| 67 | } |
| 68 | |
| 69 | func TestParseProduceComment(t *testing.T) { |
| 70 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…