use of org.sonar.server.issue.IssueChangeWSSupport.FormattingContext in project sonarqube by SonarSource.
the class ShowActionTest method mockChangelogAndCommentsFormattingContext.
private FormattingContext mockChangelogAndCommentsFormattingContext() {
FormattingContext formattingContext = Mockito.mock(FormattingContext.class);
when(issueChangeSupport.newFormattingContext(any(), any(), any(), anySet(), anySet())).thenReturn(formattingContext);
return formattingContext;
}
Aggregations