Skip to content

Commit 7ec800d

Browse files
committed
Fixes #2489 : Fixed codestyle
1 parent 728c2e6 commit 7ec800d

File tree

2 files changed

+33
-19
lines changed

2 files changed

+33
-19
lines changed

src/main/java/org/mockito/internal/creation/bytebuddy/MockMethodAdvice.java

+8-6
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,8 @@ private static Object tryInvoke(Method origin, Object instance, Object[] argumen
315315
return accessor.invoke(origin, instance, arguments);
316316
} catch (InvocationTargetException exception) {
317317
Throwable cause = exception.getCause();
318-
new ConditionalStackTraceFilter().filter(removeRecursiveCalls(cause, origin.getDeclaringClass()));
318+
new ConditionalStackTraceFilter()
319+
.filter(removeRecursiveCalls(cause, origin.getDeclaringClass()));
319320
throw cause;
320321
}
321322
}
@@ -332,12 +333,13 @@ static Throwable removeRecursiveCalls(final Throwable cause, final Class<?> decl
332333
indexesToBeRemoved.add(elementIndex);
333334
}
334335
}
335-
final List<StackTraceElement> adjustedList = new ArrayList<>(Arrays.asList(cause.getStackTrace()));
336+
final List<StackTraceElement> adjustedList =
337+
new ArrayList<>(Arrays.asList(cause.getStackTrace()));
336338
indexesToBeRemoved.stream()
337-
.sorted(Comparator.reverseOrder())
338-
.mapToInt(Integer::intValue)
339-
.forEach(adjustedList::remove);
340-
cause.setStackTrace(adjustedList.toArray(new StackTraceElement[]{}));
339+
.sorted(Comparator.reverseOrder())
340+
.mapToInt(Integer::intValue)
341+
.forEach(adjustedList::remove);
342+
cause.setStackTrace(adjustedList.toArray(new StackTraceElement[] {}));
341343
return cause;
342344
}
343345

src/test/java/org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMakerTest.java

+25-13
Original file line numberDiff line numberDiff line change
@@ -249,13 +249,17 @@ public void should_leave_causing_stack() throws Exception {
249249
settings, new MockHandlerImpl<>(settings), new ExceptionThrowingClass());
250250

251251
StackTraceElement[] returnedStack =
252-
assertThrows(IOException.class, () -> proxy.get().throwException()).getStackTrace();
252+
assertThrows(IOException.class, () -> proxy.get().throwException()).getStackTrace();
253253

254254
assertNotNull("Stack trace from mockito expected", returnedStack);
255255

256-
List<StackTraceElement> exceptionClassElements = Arrays.stream(returnedStack)
257-
.filter(element -> element.getClassName().equals(ExceptionThrowingClass.class.getName()))
258-
.collect(Collectors.toList());
256+
List<StackTraceElement> exceptionClassElements =
257+
Arrays.stream(returnedStack)
258+
.filter(
259+
element ->
260+
element.getClassName()
261+
.equals(ExceptionThrowingClass.class.getName()))
262+
.collect(Collectors.toList());
259263
assertEquals(3, exceptionClassElements.size());
260264
assertEquals("internalThrowException", exceptionClassElements.get(0).getMethodName());
261265
assertEquals("internalThrowException", exceptionClassElements.get(1).getMethodName());
@@ -264,26 +268,34 @@ public void should_leave_causing_stack() throws Exception {
264268

265269
@Test
266270
public void should_leave_causing_stack_with_two_spies() throws Exception {
267-
//given
271+
// given
268272
MockSettingsImpl<ExceptionThrowingClass> settingsEx = new MockSettingsImpl<>();
269273
settingsEx.setTypeToMock(ExceptionThrowingClass.class);
270274
settingsEx.defaultAnswer(Answers.CALLS_REAL_METHODS);
271275
Optional<ExceptionThrowingClass> proxyEx =
272-
mockMaker.createSpy(settingsEx, new MockHandlerImpl<>(settingsEx), new ExceptionThrowingClass());
276+
mockMaker.createSpy(
277+
settingsEx,
278+
new MockHandlerImpl<>(settingsEx),
279+
new ExceptionThrowingClass());
273280

274281
MockSettingsImpl<WrapperClass> settingsWr = new MockSettingsImpl<>();
275282
settingsWr.setTypeToMock(WrapperClass.class);
276283
settingsWr.defaultAnswer(Answers.CALLS_REAL_METHODS);
277284
Optional<WrapperClass> proxyWr =
278-
mockMaker.createSpy(settingsWr, new MockHandlerImpl<>(settingsWr), new WrapperClass());
285+
mockMaker.createSpy(
286+
settingsWr, new MockHandlerImpl<>(settingsWr), new WrapperClass());
279287

280-
//when
281-
IOException ex = assertThrows(IOException.class, () -> proxyWr.get().callWrapped(proxyEx.get()));
282-
List<StackTraceElement> wrapperClassElements = Arrays.stream(ex.getStackTrace())
283-
.filter(element -> element.getClassName().equals(WrapperClass.class.getName()))
284-
.collect(Collectors.toList());
288+
// when
289+
IOException ex =
290+
assertThrows(IOException.class, () -> proxyWr.get().callWrapped(proxyEx.get()));
291+
List<StackTraceElement> wrapperClassElements =
292+
Arrays.stream(ex.getStackTrace())
293+
.filter(
294+
element ->
295+
element.getClassName().equals(WrapperClass.class.getName()))
296+
.collect(Collectors.toList());
285297

286-
//then
298+
// then
287299
assertEquals(1, wrapperClassElements.size());
288300
assertEquals("callWrapped", wrapperClassElements.get(0).getMethodName());
289301
}

0 commit comments

Comments
 (0)