Description
Parametrized tests produce warnings related to exceptions in method signatures.
For example, this throws is redundant. But sometimes we should render them.
publicstaticArrayList<Arguments> provideDataForContainsCompare() throwsException {
ArrayList<Arguments> argList = newArrayList<Arguments>();
{
IntExamplesintExamples = newIntExamples();
argList.add(Arguments.arguments(intExamples, 1, 1, 1));
}
returnargList;
}
Description
Parametrized tests produce warnings related to exceptions in method signatures.
For example, this throws is redundant. But sometimes we should render them.