public class io.vertx.ext.unit.impl.TestCaseImpl implements io.vertx.ext.unit.TestCase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.unit.impl.TestCaseImpl
  super_class: java.lang.Object
{
  final java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0010) ACC_FINAL

  final int repeat;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final io.vertx.core.Handler<io.vertx.ext.unit.TestContext> handler;
    descriptor: Lio/vertx/core/Handler;
    flags: (0x0010) ACC_FINAL
    Signature: Lio/vertx/core/Handler<Lio/vertx/ext/unit/TestContext;>;

  public void <init>(java.lang.String, int, io.vertx.core.Handler<io.vertx.ext.unit.TestContext>);
    descriptor: (Ljava/lang/String;ILio/vertx/core/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
        start local 1 // java.lang.String name
        start local 2 // int repeat
        start local 3 // io.vertx.core.Handler handler
         0: .line 24
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 25
            aload 1 /* name */
            ifnonnull 3
         2: .line 26
            new java.lang.IllegalArgumentException
            dup
            ldc "Test name cannot be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 28
      StackMap locals: io.vertx.ext.unit.impl.TestCaseImpl java.lang.String int io.vertx.core.Handler
      StackMap stack:
            iload 2 /* repeat */
            iconst_1
            if_icmpge 5
         4: .line 29
            new java.lang.IllegalArgumentException
            dup
            ldc "Repeat count must be >= 1"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 31
      StackMap locals:
      StackMap stack:
            aload 3 /* handler */
            ifnonnull 7
         6: .line 32
            new java.lang.IllegalArgumentException
            dup
            ldc "Test cannot be null"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 34
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* name */
            putfield io.vertx.ext.unit.impl.TestCaseImpl.name:Ljava/lang/String;
         8: .line 35
            aload 0 /* this */
            iload 2 /* repeat */
            putfield io.vertx.ext.unit.impl.TestCaseImpl.repeat:I
         9: .line 36
            aload 0 /* this */
            aload 3 /* handler */
            putfield io.vertx.ext.unit.impl.TestCaseImpl.handler:Lio/vertx/core/Handler;
        10: .line 37
            return
        end local 3 // io.vertx.core.Handler handler
        end local 2 // int repeat
        end local 1 // java.lang.String name
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   11     0     this  Lio/vertx/ext/unit/impl/TestCaseImpl;
            0   11     1     name  Ljava/lang/String;
            0   11     2   repeat  I
            0   11     3  handler  Lio/vertx/core/Handler<Lio/vertx/ext/unit/TestContext;>;
    Signature: (Ljava/lang/String;ILio/vertx/core/Handler<Lio/vertx/ext/unit/TestContext;>;)V
    MethodParameters:
         Name  Flags
      name     
      repeat   
      handler  

  private io.vertx.ext.unit.report.TestCaseReport runner();
    descriptor: ()Lio/vertx/ext/unit/report/TestCaseReport;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=11, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
         0: .line 40
            new io.vertx.ext.unit.impl.TestCaseReportImpl
            dup
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.TestCaseImpl.name:Ljava/lang/String;
            lconst_0
            iconst_1
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            aconst_null
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.TestCaseImpl.handler:Lio/vertx/core/Handler;
            aconst_null
            aconst_null
            invokespecial io.vertx.ext.unit.impl.TestCaseReportImpl.<init>:(Ljava/lang/String;JILjava/util/Map;Lio/vertx/core/Handler;Lio/vertx/core/Handler;Lio/vertx/core/Handler;Lio/vertx/core/Handler;)V
            areturn
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/impl/TestCaseImpl;

  public java.lang.String name();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
         0: .line 44
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.TestCaseImpl.name:Ljava/lang/String;
            areturn
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/impl/TestCaseImpl;

  public void awaitSuccess();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
         0: .line 49
            aload 0 /* this */
            ldc 2
            getstatic java.util.concurrent.TimeUnit.MINUTES:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.vertx.ext.unit.impl.TestCaseImpl.awaitSuccess:(JLjava/util/concurrent/TimeUnit;)V
         1: .line 50
            return
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/vertx/ext/unit/impl/TestCaseImpl;

  public void awaitSuccess(long, java.util.concurrent.TimeUnit);
    descriptor: (JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
        start local 1 // long timeout
        start local 3 // java.util.concurrent.TimeUnit unit
         0: .line 54
            aload 0 /* this */
            new io.vertx.ext.unit.impl.ExecutionContext
            dup
            invokestatic io.vertx.core.Vertx.currentContext:()Lio/vertx/core/Context;
            invokespecial io.vertx.ext.unit.impl.ExecutionContext.<init>:(Lio/vertx/core/Context;)V
            lload 1 /* timeout */
            aload 3 /* unit */
            invokevirtual io.vertx.ext.unit.impl.TestCaseImpl.awaitSuccess:(Lio/vertx/ext/unit/impl/ExecutionContext;JLjava/util/concurrent/TimeUnit;)V
         1: .line 55
            return
        end local 3 // java.util.concurrent.TimeUnit unit
        end local 1 // long timeout
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/unit/impl/TestCaseImpl;
            0    2     1  timeout  J
            0    2     3     unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
         Name  Flags
      timeout  
      unit     

  public void awaitSuccess(io.vertx.core.Vertx, long, java.util.concurrent.TimeUnit);
    descriptor: (Lio/vertx/core/Vertx;JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 59
            aload 0 /* this */
            new io.vertx.ext.unit.impl.ExecutionContext
            dup
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            invokespecial io.vertx.ext.unit.impl.ExecutionContext.<init>:(Lio/vertx/core/Context;)V
            lload 2 /* timeout */
            aload 4 /* unit */
            invokevirtual io.vertx.ext.unit.impl.TestCaseImpl.awaitSuccess:(Lio/vertx/ext/unit/impl/ExecutionContext;JLjava/util/concurrent/TimeUnit;)V
         1: .line 60
            return
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/vertx/ext/unit/impl/TestCaseImpl;
            0    2     1    vertx  Lio/vertx/core/Vertx;
            0    2     2  timeout  J
            0    2     4     unit  Ljava/util/concurrent/TimeUnit;
    MethodParameters:
         Name  Flags
      vertx    
      timeout  
      unit     

  public void awaitSuccess(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 64
            aload 0 /* this */
            new io.vertx.ext.unit.impl.ExecutionContext
            dup
            aload 1 /* vertx */
            invokeinterface io.vertx.core.Vertx.getOrCreateContext:()Lio/vertx/core/Context;
            invokespecial io.vertx.ext.unit.impl.ExecutionContext.<init>:(Lio/vertx/core/Context;)V
            ldc 2
            getstatic java.util.concurrent.TimeUnit.MINUTES:Ljava/util/concurrent/TimeUnit;
            invokevirtual io.vertx.ext.unit.impl.TestCaseImpl.awaitSuccess:(Lio/vertx/ext/unit/impl/ExecutionContext;JLjava/util/concurrent/TimeUnit;)V
         1: .line 65
            return
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/vertx/ext/unit/impl/TestCaseImpl;
            0    2     1  vertx  Lio/vertx/core/Vertx;
    MethodParameters:
       Name  Flags
      vertx  

  private void awaitSuccess(io.vertx.ext.unit.impl.ExecutionContext, long, java.util.concurrent.TimeUnit);
    descriptor: (Lio/vertx/ext/unit/impl/ExecutionContext;JLjava/util/concurrent/TimeUnit;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=11, args_size=4
        start local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
        start local 1 // io.vertx.ext.unit.impl.ExecutionContext context
        start local 2 // long timeout
        start local 4 // java.util.concurrent.TimeUnit unit
         0: .line 68
            new java.util.concurrent.CountDownLatch
            dup
            iconst_1
            invokespecial java.util.concurrent.CountDownLatch.<init>:(I)V
            astore 5 /* latch */
        start local 5 // java.util.concurrent.CountDownLatch latch
         1: .line 69
            aload 0 /* this */
            invokevirtual io.vertx.ext.unit.impl.TestCaseImpl.runner:()Lio/vertx/ext/unit/report/TestCaseReport;
            checkcast io.vertx.ext.unit.impl.TestCaseReportImpl
            astore 6 /* testCase */
        start local 6 // io.vertx.ext.unit.impl.TestCaseReportImpl testCase
         2: .line 70
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            astore 7 /* resultRef */
        start local 7 // java.util.concurrent.atomic.AtomicReference resultRef
         3: .line 71
            aload 6 /* testCase */
            aload 7 /* resultRef */
            aload 5 /* latch */
            invokedynamic handle(Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;)Lio/vertx/core/Handler;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  io/vertx/ext/unit/impl/TestCaseImpl.lambda$0(Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Lio/vertx/ext/unit/report/TestResult;)V (6)
                  (Lio/vertx/ext/unit/report/TestResult;)V
            invokevirtual io.vertx.ext.unit.impl.TestCaseReportImpl.endHandler:(Lio/vertx/core/Handler;)Lio/vertx/ext/unit/report/TestCaseReport;
            pop
         4: .line 75
            aload 6 /* testCase */
            invokedynamic execute()Lio/vertx/ext/unit/impl/Task;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Lio/vertx/ext/unit/impl/ExecutionContext;)V
                  io/vertx/ext/unit/impl/TestCaseImpl.lambda$1(Ljava/lang/Object;Lio/vertx/ext/unit/impl/ExecutionContext;)V (6)
                  (Ljava/lang/Object;Lio/vertx/ext/unit/impl/ExecutionContext;)V
            invokevirtual io.vertx.ext.unit.impl.TestCaseReportImpl.buildTask:(Lio/vertx/ext/unit/impl/Task;)Lio/vertx/ext/unit/impl/Task;
            astore 8 /* task */
        start local 8 // io.vertx.ext.unit.impl.Task task
         5: .line 76
            aload 1 /* context */
            aload 8 /* task */
            invokevirtual io.vertx.ext.unit.impl.ExecutionContext.run:(Lio/vertx/ext/unit/impl/Task;)V
         6: .line 78
            aload 5 /* latch */
            lload 2 /* timeout */
            aload 4 /* unit */
            invokevirtual java.util.concurrent.CountDownLatch.await:(JLjava/util/concurrent/TimeUnit;)Z
            pop
         7: .line 79
            goto 10
      StackMap locals: io.vertx.ext.unit.impl.TestCaseImpl io.vertx.ext.unit.impl.ExecutionContext long java.util.concurrent.TimeUnit java.util.concurrent.CountDownLatch io.vertx.ext.unit.impl.TestCaseReportImpl java.util.concurrent.atomic.AtomicReference io.vertx.ext.unit.impl.Task
      StackMap stack: java.lang.InterruptedException
         8: astore 9 /* e */
        start local 9 // java.lang.InterruptedException e
         9: .line 80
            new java.lang.IllegalStateException
            dup
            aload 9 /* e */
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 9 // java.lang.InterruptedException e
        10: .line 82
      StackMap locals:
      StackMap stack:
            aload 7 /* resultRef */
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast io.vertx.ext.unit.report.TestResult
            astore 9 /* result */
        start local 9 // io.vertx.ext.unit.report.TestResult result
        11: .line 83
            aload 9 /* result */
            ifnonnull 13
        12: .line 84
            new java.lang.IllegalStateException
            dup
            ldc "Time out"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 85
      StackMap locals: io.vertx.ext.unit.report.TestResult
      StackMap stack:
            aload 9 /* result */
            invokeinterface io.vertx.ext.unit.report.TestResult.failed:()Z
            ifeq 19
        14: .line 86
            aload 9 /* result */
            invokeinterface io.vertx.ext.unit.report.TestResult.failure:()Lio/vertx/ext/unit/report/Failure;
            invokeinterface io.vertx.ext.unit.report.Failure.cause:()Ljava/lang/Throwable;
            astore 10 /* failure */
        start local 10 // java.lang.Throwable failure
        15: .line 87
            aload 10 /* failure */
            instanceof java.lang.Error
            ifeq 17
        16: .line 88
            aload 10 /* failure */
            checkcast java.lang.Error
            athrow
        17: .line 89
      StackMap locals: java.lang.Throwable
      StackMap stack:
            aload 10 /* failure */
            instanceof java.lang.RuntimeException
            ifeq 19
        18: .line 90
            aload 10 /* failure */
            checkcast java.lang.RuntimeException
            athrow
        end local 10 // java.lang.Throwable failure
        19: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 9 // io.vertx.ext.unit.report.TestResult result
        end local 8 // io.vertx.ext.unit.impl.Task task
        end local 7 // java.util.concurrent.atomic.AtomicReference resultRef
        end local 6 // io.vertx.ext.unit.impl.TestCaseReportImpl testCase
        end local 5 // java.util.concurrent.CountDownLatch latch
        end local 4 // java.util.concurrent.TimeUnit unit
        end local 2 // long timeout
        end local 1 // io.vertx.ext.unit.impl.ExecutionContext context
        end local 0 // io.vertx.ext.unit.impl.TestCaseImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lio/vertx/ext/unit/impl/TestCaseImpl;
            0   20     1    context  Lio/vertx/ext/unit/impl/ExecutionContext;
            0   20     2    timeout  J
            0   20     4       unit  Ljava/util/concurrent/TimeUnit;
            1   20     5      latch  Ljava/util/concurrent/CountDownLatch;
            2   20     6   testCase  Lio/vertx/ext/unit/impl/TestCaseReportImpl;
            3   20     7  resultRef  Ljava/util/concurrent/atomic/AtomicReference<Lio/vertx/ext/unit/report/TestResult;>;
            5   20     8       task  Lio/vertx/ext/unit/impl/Task<*>;
            9   10     9          e  Ljava/lang/InterruptedException;
           11   20     9     result  Lio/vertx/ext/unit/report/TestResult;
           15   19    10    failure  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     7       8  Class java.lang.InterruptedException
    MethodParameters:
         Name  Flags
      context  
      timeout  
      unit     

  private static void lambda$0(java.util.concurrent.atomic.AtomicReference, java.util.concurrent.CountDownLatch, io.vertx.ext.unit.report.TestResult);
    descriptor: (Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/CountDownLatch;Lio/vertx/ext/unit/report/TestResult;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // io.vertx.ext.unit.report.TestResult result
         0: .line 72
            aload 0
            aload 2 /* result */
            invokevirtual java.util.concurrent.atomic.AtomicReference.set:(Ljava/lang/Object;)V
         1: .line 73
            aload 1
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
         2: .line 74
            return
        end local 2 // io.vertx.ext.unit.report.TestResult result
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     2  result  Lio/vertx/ext/unit/report/TestResult;

  private static void lambda$1(java.lang.Object, io.vertx.ext.unit.impl.ExecutionContext);
    descriptor: (Ljava/lang/Object;Lio/vertx/ext/unit/impl/ExecutionContext;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // java.lang.Object v
        start local 1 // io.vertx.ext.unit.impl.ExecutionContext executor
         0: .line 75
            return
        end local 1 // io.vertx.ext.unit.impl.ExecutionContext executor
        end local 0 // java.lang.Object v
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0         v  Ljava/lang/Object;
            0    1     1  executor  Lio/vertx/ext/unit/impl/ExecutionContext;
}
SourceFile: "TestCaseImpl.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles