We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34fd7d commit af18a5fCopy full SHA for af18a5f
src/test/java/org/scm4j/vcs/GitVCSTest.java
@@ -181,13 +181,13 @@ public void testExceptions() throws Exception {
181
params[i] = clazz.isPrimitive() ? 0: null;
182
i++;
183
}
184
- testException(eApi, m, params);
+ testExceptionThrowing(eApi, m, params);
185
186
- testException(eCommon, m, params);
+ testExceptionThrowing(eCommon, m, params);
187
188
189
190
- private void testException(Exception testException, Method m, Object[] params) throws Exception {
+ private void testExceptionThrowing(Exception testException, Method m, Object[] params) throws Exception {
191
Mockito.reset((GitVCS) vcs);
192
Mockito.doThrow(testException).when((GitVCS) vcs).getLocalGit(mockedLWC);
193
try {
0 commit comments