abstract class org.junit.jupiter.engine.discovery.predicates.IsTestableMethod implements java.util.function.Predicate<java.lang.reflect.Method>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: org.junit.jupiter.engine.discovery.predicates.IsTestableMethod
  super_class: java.lang.Object
{
  private final java.lang.Class<? extends java.lang.annotation.Annotation> annotationType;
    descriptor: Ljava/lang/Class;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;

  private final boolean mustReturnVoid;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.Class<? extends java.lang.annotation.Annotation>, );
    descriptor: (Ljava/lang/Class;Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.junit.jupiter.engine.discovery.predicates.IsTestableMethod this
        start local 1 // java.lang.Class annotationType
        start local 2 // boolean mustReturnVoid
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 32
            aload 0 /* this */
            aload 1 /* annotationType */
            putfield org.junit.jupiter.engine.discovery.predicates.IsTestableMethod.annotationType:Ljava/lang/Class;
         2: .line 33
            aload 0 /* this */
            iload 2 /* mustReturnVoid */
            putfield org.junit.jupiter.engine.discovery.predicates.IsTestableMethod.mustReturnVoid:Z
         3: .line 34
            return
        end local 2 // boolean mustReturnVoid
        end local 1 // java.lang.Class annotationType
        end local 0 // org.junit.jupiter.engine.discovery.predicates.IsTestableMethod this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    4     0            this  Lorg/junit/jupiter/engine/discovery/predicates/IsTestableMethod;
            0    4     1  annotationType  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
            0    4     2  mustReturnVoid  Z
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;Z)V
    MethodParameters:
                Name  Flags
      annotationType  
      mustReturnVoid  

  public boolean test(java.lang.reflect.Method);
    descriptor: (Ljava/lang/reflect/Method;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.junit.jupiter.engine.discovery.predicates.IsTestableMethod this
        start local 1 // java.lang.reflect.Method candidate
         0: .line 39
            aload 1 /* candidate */
            invokestatic org.junit.platform.commons.util.ReflectionUtils.isStatic:(Ljava/lang/reflect/Member;)Z
            ifeq 2
         1: .line 40
            iconst_0
            ireturn
         2: .line 42
      StackMap locals:
      StackMap stack:
            aload 1 /* candidate */
            invokestatic org.junit.platform.commons.util.ReflectionUtils.isPrivate:(Ljava/lang/reflect/Member;)Z
            ifeq 4
         3: .line 43
            iconst_0
            ireturn
         4: .line 45
      StackMap locals:
      StackMap stack:
            aload 1 /* candidate */
            invokestatic org.junit.platform.commons.util.ReflectionUtils.isAbstract:(Ljava/lang/reflect/Member;)Z
            ifeq 6
         5: .line 46
            iconst_0
            ireturn
         6: .line 48
      StackMap locals:
      StackMap stack:
            aload 1 /* candidate */
            invokestatic org.junit.platform.commons.util.ReflectionUtils.returnsVoid:(Ljava/lang/reflect/Method;)Z
            aload 0 /* this */
            getfield org.junit.jupiter.engine.discovery.predicates.IsTestableMethod.mustReturnVoid:Z
            if_icmpeq 8
         7: .line 49
            iconst_0
            ireturn
         8: .line 52
      StackMap locals:
      StackMap stack:
            aload 1 /* candidate */
            aload 0 /* this */
            getfield org.junit.jupiter.engine.discovery.predicates.IsTestableMethod.annotationType:Ljava/lang/Class;
            invokestatic org.junit.platform.commons.util.AnnotationUtils.isAnnotated:(Ljava/lang/reflect/AnnotatedElement;Ljava/lang/Class;)Z
            ireturn
        end local 1 // java.lang.reflect.Method candidate
        end local 0 // org.junit.jupiter.engine.discovery.predicates.IsTestableMethod this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/junit/jupiter/engine/discovery/predicates/IsTestableMethod;
            0    9     1  candidate  Ljava/lang/reflect/Method;
    MethodParameters:
           Name  Flags
      candidate  

  public boolean test(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.reflect.Method
            invokevirtual org.junit.jupiter.engine.discovery.predicates.IsTestableMethod.test:(Ljava/lang/reflect/Method;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/lang/Object;Ljava/util/function/Predicate<Ljava/lang/reflect/Method;>;
SourceFile: "IsTestableMethod.java"