verify(checkConfig, getPath("InputTypeParamsTags.java"), expected);
}
@Test
public void testAllowMissingTypeParameters() throws Exception
{
final DefaultConfiguration checkConfig =
createCheckConfig(JavadocTypeCheck.class);
checkConfig.addAttribute("allowMissingParamTags", "true");
final String[] expected = {
"7:4: Unused @param tag for '<D123>'.",
};
verify(checkConfig, getPath("InputTypeParamsTags.java"), expected);
}