class examples.LifecycleExampleTest
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: examples.LifecycleExampleTest
  super_class: java.lang.Object
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.LifecycleExampleTest this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.LifecycleExampleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/LifecycleExampleTest;

  void prepare(io.vertx.core.Vertx, io.vertx.junit5.VertxTestContext);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/junit5/VertxTestContext;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // examples.LifecycleExampleTest this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.junit5.VertxTestContext testContext
         0: .line 40
            aload 1 /* vertx */
            new examples.SomeVerticle
            dup
            invokespecial examples.SomeVerticle.<init>:()V
            aload 2 /* testContext */
            invokevirtual io.vertx.junit5.VertxTestContext.succeedingThenComplete:()Lio/vertx/core/Handler;
            invokeinterface io.vertx.core.Vertx.deployVerticle:(Lio/vertx/core/Verticle;Lio/vertx/core/Handler;)V
         1: .line 41
            return
        end local 2 // io.vertx.junit5.VertxTestContext testContext
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.LifecycleExampleTest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lexamples/LifecycleExampleTest;
            0    2     1        vertx  Lio/vertx/core/Vertx;
            0    2     2  testContext  Lio/vertx/junit5/VertxTestContext;
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.BeforeEach()
      org.junit.jupiter.api.DisplayName(value = "Deploy a verticle")
    MethodParameters:
             Name  Flags
      vertx        
      testContext  

  void foo(io.vertx.core.Vertx, io.vertx.junit5.VertxTestContext);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/junit5/VertxTestContext;)V
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // examples.LifecycleExampleTest this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.junit5.VertxTestContext testContext
         0: .line 47
            aload 2 /* testContext */
            invokevirtual io.vertx.junit5.VertxTestContext.completeNow:()V
         1: .line 48
            return
        end local 2 // io.vertx.junit5.VertxTestContext testContext
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.LifecycleExampleTest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lexamples/LifecycleExampleTest;
            0    2     1        vertx  Lio/vertx/core/Vertx;
            0    2     2  testContext  Lio/vertx/junit5/VertxTestContext;
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.Test()
      org.junit.jupiter.api.DisplayName(value = "A first test")
    MethodParameters:
             Name  Flags
      vertx        
      testContext  

  void bar(io.vertx.core.Vertx, io.vertx.junit5.VertxTestContext);
    descriptor: (Lio/vertx/core/Vertx;Lio/vertx/junit5/VertxTestContext;)V
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // examples.LifecycleExampleTest this
        start local 1 // io.vertx.core.Vertx vertx
        start local 2 // io.vertx.junit5.VertxTestContext testContext
         0: .line 54
            aload 2 /* testContext */
            invokevirtual io.vertx.junit5.VertxTestContext.completeNow:()V
         1: .line 55
            return
        end local 2 // io.vertx.junit5.VertxTestContext testContext
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.LifecycleExampleTest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lexamples/LifecycleExampleTest;
            0    2     1        vertx  Lio/vertx/core/Vertx;
            0    2     2  testContext  Lio/vertx/junit5/VertxTestContext;
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.Test()
      org.junit.jupiter.api.DisplayName(value = "A second test")
    MethodParameters:
             Name  Flags
      vertx        
      testContext  

  void lastChecks(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // examples.LifecycleExampleTest this
         0: .line 60
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe method assertThat(Set<String>) is undefined for the type LifecycleExampleTest\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // examples.LifecycleExampleTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/LifecycleExampleTest;
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.AfterEach()
      org.junit.jupiter.api.DisplayName(value = "Check that the verticle is still there")
    MethodParameters:
       Name  Flags
      vertx  
}
SourceFile: "LifecycleExampleTest.java"
    RuntimeVisibleAnnotations: 
      org.junit.jupiter.api.extension.ExtendWith(value = {Lio/vertx/junit5/VertxExtension;})