}
@Test
public void shouldFindMultipleSuppressionsInMultiLineComment() {
Assert.assertEquals("<!-- NOLINT:RuleID1\n NOLINT:RuleID2\n shouldFindMultipleSuppressionsInMultiLineComment -->",
violationSuppressor.findSuppressionComment(new Violation(DUMMY_MAVEN_PROJECT, RULE1, DUMMY_MESSAGE, new InputLocation(37, 16, source))));
Assert.assertEquals("<!-- NOLINT:RuleID1\n NOLINT:RuleID2\n shouldFindMultipleSuppressionsInMultiLineComment -->",
violationSuppressor.findSuppressionComment(new Violation(DUMMY_MAVEN_PROJECT, RULE2, DUMMY_MESSAGE, new InputLocation(37, 16, source))));
}