|
12 | 12 | import static net.bytebuddy.matcher.ElementMatchers.any;
|
13 | 13 | import static net.bytebuddy.matcher.ElementMatchers.hasParameters;
|
14 | 14 | import static net.bytebuddy.matcher.ElementMatchers.hasType;
|
15 |
| -import static net.bytebuddy.matcher.ElementMatchers.isAnnotatedWith; |
16 |
| -import static net.bytebuddy.matcher.ElementMatchers.isDeclaredBy; |
17 | 15 | import static net.bytebuddy.matcher.ElementMatchers.isEquals;
|
18 | 16 | import static net.bytebuddy.matcher.ElementMatchers.isHashCode;
|
19 | 17 | import static net.bytebuddy.matcher.ElementMatchers.isPackagePrivate;
|
20 |
| -import static net.bytebuddy.matcher.ElementMatchers.named; |
21 | 18 | import static net.bytebuddy.matcher.ElementMatchers.returns;
|
22 | 19 | import static net.bytebuddy.matcher.ElementMatchers.whereAny;
|
23 | 20 | import static org.mockito.internal.util.StringUtil.join;
|
|
29 | 26 | import java.lang.reflect.Modifier;
|
30 | 27 | import java.lang.reflect.Type;
|
31 | 28 | import java.util.ArrayList;
|
32 |
| -import java.util.Collection; |
33 | 29 | import java.util.Iterator;
|
34 |
| -import java.util.LinkedList; |
35 | 30 | import java.util.Random;
|
36 | 31 | import net.bytebuddy.ByteBuddy;
|
37 | 32 | import net.bytebuddy.description.method.MethodDescription;
|
@@ -224,7 +219,7 @@ public <T> Class<? extends T> mockClass(MockFeatures<T> features) {
|
224 | 219 | byteBuddy
|
225 | 220 | .subclass(features.mockedType)
|
226 | 221 | .name(name)
|
227 |
| - .ignoreAlso(isGroovyMethod()) |
| 222 | + .ignoreAlso(BytecodeGenerator.isGroovyMethod(false)) |
228 | 223 | .annotateType(
|
229 | 224 | features.stripAnnotations
|
230 | 225 | ? new Annotation[0]
|
@@ -282,22 +277,6 @@ public void mockClassConstruction(Class<?> type) {
|
282 | 277 | "The subclass byte code generator cannot create construction mocks");
|
283 | 278 | }
|
284 | 279 |
|
285 |
| - private <T> Collection<Class<? super T>> getAllTypes(Class<T> type) { |
286 |
| - Collection<Class<? super T>> supertypes = new LinkedList<>(); |
287 |
| - supertypes.add(type); |
288 |
| - Class<? super T> superType = type; |
289 |
| - while (superType != null) { |
290 |
| - supertypes.add(superType); |
291 |
| - superType = superType.getSuperclass(); |
292 |
| - } |
293 |
| - return supertypes; |
294 |
| - } |
295 |
| - |
296 |
| - private static ElementMatcher<MethodDescription> isGroovyMethod() { |
297 |
| - return isDeclaredBy(named("groovy.lang.GroovyObjectSupport")) |
298 |
| - .or(isAnnotatedWith(named("groovy.transform.Internal"))); |
299 |
| - } |
300 |
| - |
301 | 280 | private boolean isComingFromJDK(Class<?> type) {
|
302 | 281 | // Comes from the manifest entry :
|
303 | 282 | // Implementation-Title: Java Runtime Environment
|
|
0 commit comments