**Description** Parametrized tests produce warnings related to exceptions in method signatures. For example, this throws is redundant. But sometimes we should render them. ```java public static ArrayList<Arguments> provideDataForContainsCompare() throws Exception { ArrayList<Arguments> argList = new ArrayList<Arguments>(); { IntExamples intExamples = new IntExamples(); argList.add(Arguments.arguments(intExamples, 1, 1, 1)); } return argList; } ```