Class StackTraceFilter
- java.lang.Object
-
- org.mockito.internal.exceptions.stacktrace.StackTraceFilter
-
- All Implemented Interfaces:
java.io.Serializable
public class StackTraceFilter extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StackTraceFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StackTraceElement[]
filter(java.lang.StackTraceElement[] target, boolean keepTop)
Example how the filter works (+/- means good/bad): [a+, b+, c-, d+, e+, f-, g+] -> [a+, b+, g+] Basically removes all bad from the middle.
-
-
-
Method Detail
-
filter
public java.lang.StackTraceElement[] filter(java.lang.StackTraceElement[] target, boolean keepTop)
Example how the filter works (+/- means good/bad): [a+, b+, c-, d+, e+, f-, g+] -> [a+, b+, g+] Basically removes all bad from the middle. If any good are in the middle of bad those are also removed.
-
-