public class io.vertx.ext.unit.impl.Result
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.vertx.ext.unit.impl.Result
  super_class: java.lang.Object
{
  final long beginTime;
    descriptor: J
    flags: (0x0010) ACC_FINAL

  final long endTime;
    descriptor: J
    flags: (0x0010) ACC_FINAL

  final java.lang.Throwable failure;
    descriptor: Ljava/lang/Throwable;
    flags: (0x0010) ACC_FINAL

  void <init>(long, long, java.lang.Throwable);
    descriptor: (JJLjava/lang/Throwable;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // io.vertx.ext.unit.impl.Result this
        start local 1 // long beginTime
        start local 3 // long endTime
        start local 5 // java.lang.Throwable failure
         0: .line 14
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 15
            aload 0 /* this */
            lload 1 /* beginTime */
            putfield io.vertx.ext.unit.impl.Result.beginTime:J
         2: .line 16
            aload 0 /* this */
            lload 3 /* endTime */
            putfield io.vertx.ext.unit.impl.Result.endTime:J
         3: .line 17
            aload 0 /* this */
            aload 5 /* failure */
            putfield io.vertx.ext.unit.impl.Result.failure:Ljava/lang/Throwable;
         4: .line 18
            return
        end local 5 // java.lang.Throwable failure
        end local 3 // long endTime
        end local 1 // long beginTime
        end local 0 // io.vertx.ext.unit.impl.Result this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/vertx/ext/unit/impl/Result;
            0    5     1  beginTime  J
            0    5     3    endTime  J
            0    5     5    failure  Ljava/lang/Throwable;
    MethodParameters:
           Name  Flags
      beginTime  
      endTime    
      failure    

  long duration();
    descriptor: ()J
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.impl.Result this
         0: .line 21
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.Result.endTime:J
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.Result.beginTime:J
            lsub
            lreturn
        end local 0 // io.vertx.ext.unit.impl.Result this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/impl/Result;

  public java.lang.Throwable getFailure();
    descriptor: ()Ljava/lang/Throwable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.vertx.ext.unit.impl.Result this
         0: .line 25
            aload 0 /* this */
            getfield io.vertx.ext.unit.impl.Result.failure:Ljava/lang/Throwable;
            areturn
        end local 0 // io.vertx.ext.unit.impl.Result this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/vertx/ext/unit/impl/Result;
}
SourceFile: "Result.java"