class org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter
  super_class: java.lang.Object
{
  private final java.lang.String pattern;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String displayName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter this
        start local 1 // java.lang.String pattern
        start local 2 // java.lang.String displayName
         0: .line 29
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 30
            aload 0 /* this */
            aload 1 /* pattern */
            putfield org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter.pattern:Ljava/lang/String;
         2: .line 31
            aload 0 /* this */
            aload 2 /* displayName */
            putfield org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter.displayName:Ljava/lang/String;
         3: .line 32
            return
        end local 2 // java.lang.String displayName
        end local 1 // java.lang.String pattern
        end local 0 // org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/junit/jupiter/engine/extension/RepeatedTestDisplayNameFormatter;
            0    4     1      pattern  Ljava/lang/String;
            0    4     2  displayName  Ljava/lang/String;
    MethodParameters:
             Name  Flags
      pattern      
      displayName  

  java.lang.String format(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter this
        start local 1 // int currentRepetition
        start local 2 // int totalRepetitions
         0: .line 35
            aload 0 /* this */
            getfield org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter.pattern:Ljava/lang/String;
         1: .line 36
            ldc "{displayName}"
            aload 0 /* this */
            getfield org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter.displayName:Ljava/lang/String;
            invokevirtual java.lang.String.replace:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
         2: .line 37
            ldc "{currentRepetition}"
            iload 1 /* currentRepetition */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokevirtual java.lang.String.replace:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
         3: .line 38
            ldc "{totalRepetitions}"
            iload 2 /* totalRepetitions */
            invokestatic java.lang.String.valueOf:(I)Ljava/lang/String;
            invokevirtual java.lang.String.replace:(Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String;
         4: .line 35
            areturn
        end local 2 // int totalRepetitions
        end local 1 // int currentRepetition
        end local 0 // org.junit.jupiter.engine.extension.RepeatedTestDisplayNameFormatter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    5     0               this  Lorg/junit/jupiter/engine/extension/RepeatedTestDisplayNameFormatter;
            0    5     1  currentRepetition  I
            0    5     2   totalRepetitions  I
    MethodParameters:
                   Name  Flags
      currentRepetition  
      totalRepetitions   
}
SourceFile: "RepeatedTestDisplayNameFormatter.java"