public class org.graalvm.component.installer.SimpleGetoptTest extends org.graalvm.component.installer.TestBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.graalvm.component.installer.SimpleGetoptTest
  super_class: org.graalvm.component.installer.TestBase
{
  org.graalvm.component.installer.SimpleGetopt getopt;
    descriptor: Lorg/graalvm/component/installer/SimpleGetopt;
    flags: (0x0000) 

  java.lang.String errorKey;
    descriptor: Ljava/lang/String;
    flags: (0x0000) 

  java.lang.Object[] errorParams;
    descriptor: [Ljava/lang/Object;
    flags: (0x0000) 

  public org.junit.rules.ExpectedException exception;
    descriptor: Lorg/junit/rules/ExpectedException;
    flags: (0x0001) ACC_PUBLIC
    RuntimeVisibleAnnotations: 
      org.junit.Rule()

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 39
            aload 0 /* this */
            invokespecial org.graalvm.component.installer.TestBase.<init>:()V
         1: .line 44
            aload 0 /* this */
            invokestatic org.junit.rules.ExpectedException.none:()Lorg/junit/rules/ExpectedException;
            putfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
         2: .line 39
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;

  public void setUp();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 48
            new java.util.HashMap
            dup
            getstatic org.graalvm.component.installer.ComponentInstaller.globalOptions:Ljava/util/Map;
            invokespecial java.util.HashMap.<init>:(Ljava/util/Map;)V
            astore 1 /* g */
        start local 1 // java.util.Map g
         1: .line 49
            aload 1 /* g */
            ldc "8"
            ldc "=C"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 50
            aload 1 /* g */
            ldc "long-user"
            ldc "U"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 51
            aload 1 /* g */
            ldc "U"
            ldc "s"
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 52
            aload 0 /* this */
            new org.graalvm.component.installer.SimpleGetoptTest$1
            dup
            aload 0 /* this */
            aload 1 /* g */
            invokespecial org.graalvm.component.installer.SimpleGetoptTest$1.<init>:(Lorg/graalvm/component/installer/SimpleGetoptTest;Ljava/util/Map;)V
            putfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
         5: .line 60
            getstatic org.graalvm.component.installer.ComponentInstaller.commands:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 8
      StackMap locals: org.graalvm.component.installer.SimpleGetoptTest java.util.Map top java.util.Iterator
      StackMap stack:
         6: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* s */
        start local 2 // java.lang.String s
         7: .line 61
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            aload 2 /* s */
            getstatic org.graalvm.component.installer.ComponentInstaller.commands:Ljava/util/Map;
            aload 2 /* s */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.graalvm.component.installer.InstallerCommand
            invokeinterface org.graalvm.component.installer.InstallerCommand.supportedOptions:()Ljava/util/Map;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.addCommandOptions:(Ljava/lang/String;Ljava/util/Map;)V
        end local 2 // java.lang.String s
         8: .line 60
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
         9: .line 63
            return
        end local 1 // java.util.Map g
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            1   10     1     g  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            7    8     2     s  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.junit.Before()

  private void setParams(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
        start local 1 // java.lang.String p
         0: .line 66
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            new java.util.LinkedList
            dup
            aload 1 /* p */
            ldc " +"
            invokevirtual java.lang.String.split:(Ljava/lang/String;)[Ljava/lang/String;
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.LinkedList.<init>:(Ljava/util/Collection;)V
            invokevirtual org.graalvm.component.installer.SimpleGetopt.setParameters:(Ljava/util/LinkedList;)V
         1: .line 67
            return
        end local 1 // java.lang.String p
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            0    2     1     p  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      p     

  public void testMissingCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 71
            aload 0 /* this */
            ldc ""
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 72
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 73
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_MissingCommand"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 74
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 75
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testUnknownCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 79
            aload 0 /* this */
            ldc "foo"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 80
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 81
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnknownCommand"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 82
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 83
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testUnknownCommandWithOptions();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 87
            aload 0 /* this */
            ldc "-e -v foo -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 88
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 89
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnknownCommand"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 90
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 91
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testSpecificOptionsPrecedeCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 95
            aload 0 /* this */
            ldc "-s info -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 96
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 97
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnsupportedGlobalOption"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 98
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 99
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testUnknownOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 103
            aload 0 /* this */
            ldc "install -S -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 104
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 105
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnsupportedOption"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 106
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 107
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testUnknownOptionIgnoredBecauseOfHelp();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 111
            aload 0 /* this */
            ldc "install -h -s"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 112
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 114
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         3: .line 116
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            ldc "s"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
         4: .line 117
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testCommandWithSeparateOptions();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 121
            aload 0 /* this */
            ldc "-e -v install -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 123
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 125
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getCommand:()Ljava/lang/String;
            astore 1 /* cmd */
        start local 1 // java.lang.String cmd
         3: .line 126
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 2 /* opts */
        start local 2 // java.util.Map opts
         4: .line 128
            aload 2 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 129
            aload 2 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 130
            aload 2 /* opts */
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         7: .line 131
            ldc "install"
            aload 1 /* cmd */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 132
            return
        end local 2 // java.util.Map opts
        end local 1 // java.lang.String cmd
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1   cmd  Ljava/lang/String;
            4    9     2  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testGlobalOptionAfterCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 136
            aload 0 /* this */
            ldc "-e install -v -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 138
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 140
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getCommand:()Ljava/lang/String;
            astore 1 /* cmd */
        start local 1 // java.lang.String cmd
         3: .line 141
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 2 /* opts */
        start local 2 // java.util.Map opts
         4: .line 143
            aload 2 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 144
            aload 2 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 145
            aload 2 /* opts */
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         7: .line 146
            ldc "install"
            aload 1 /* cmd */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 147
            return
        end local 2 // java.util.Map opts
        end local 1 // java.lang.String cmd
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1   cmd  Ljava/lang/String;
            4    9     2  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testPositonalParamsMixedWithOptions();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 151
            aload 0 /* this */
            ldc "-e -v install param1 -f param2 -r param3"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 153
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 155
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 156
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 157
            aload 1 /* opts */
            ldc "f"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 158
            aload 1 /* opts */
            ldc "r"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 159
            aload 1 /* opts */
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
            iconst_3
            anewarray java.lang.String
            dup
            iconst_0
         7: .line 161
            ldc "param1"
            aastore
            dup
            iconst_1
            ldc "param2"
            aastore
            dup
            iconst_2
            ldc "param3"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 162
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testParametrizedOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 166
            aload 0 /* this */
            ldc "-C catalog -v install -h"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 167
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 169
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getCommand:()Ljava/lang/String;
            astore 1 /* cmd */
        start local 1 // java.lang.String cmd
         3: .line 170
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 2 /* opts */
        start local 2 // java.util.Map opts
         4: .line 172
            aload 2 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 173
            aload 2 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 174
            aload 2 /* opts */
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         7: .line 175
            ldc "install"
            aload 1 /* cmd */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 176
            ldc "catalog"
            aload 2 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 177
            return
        end local 2 // java.util.Map opts
        end local 1 // java.lang.String cmd
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3   10     1   cmd  Ljava/lang/String;
            4   10     2  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testInterleavedParametrizedOptions();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 181
            aload 0 /* this */
            ldc "-e install param1 -C catalog param2 -r param3"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 182
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 184
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 185
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 186
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 187
            aload 1 /* opts */
            ldc "r"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 188
            ldc "catalog"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
            iconst_3
            anewarray java.lang.String
            dup
            iconst_0
         7: .line 190
            ldc "param1"
            aastore
            dup
            iconst_1
            ldc "param2"
            aastore
            dup
            iconst_2
            ldc "param3"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 191
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMaskedOutOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 195
            aload 0 /* this */
            ldc "-u list param1"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 196
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 197
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnsupportedOption"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 198
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 199
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMaskedOutOption2();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 203
            aload 0 /* this */
            ldc "list -u param1"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 204
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 205
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnsupportedOption"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 206
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 207
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMergedOptions();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 211
            aload 0 /* this */
            ldc "list param1 -vel param2"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 212
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 214
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 215
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 216
            aload 1 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 217
            aload 1 /* opts */
            ldc "l"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
         6: .line 218
            ldc "param1"
            aastore
            dup
            iconst_1
            ldc "param2"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         7: .line 219
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    8     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOptionWithImmediateParameter();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 223
            aload 0 /* this */
            ldc "list param1 -veCcatalog param2"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 224
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 226
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 227
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 228
            aload 1 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 229
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 230
            ldc "catalog"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
         7: .line 231
            ldc "param1"
            aastore
            dup
            iconst_1
            ldc "param2"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 232
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOptionsTerminated();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 236
            aload 0 /* this */
            ldc "-e install param1 -C catalog -- param2 -r param3"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 237
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 239
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 240
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 241
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 242
            aload 1 /* opts */
            ldc "r"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
         6: .line 243
            ldc "catalog"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
            iconst_4
            anewarray java.lang.String
            dup
            iconst_0
         7: .line 245
            ldc "param1"
            aastore
            dup
            iconst_1
            ldc "param2"
            aastore
            dup
            iconst_2
            ldc "-r"
            aastore
            dup
            iconst_3
            ldc "param3"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 246
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    9     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testAmbiguousCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 250
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         1: .line 251
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_AmbiguousCommand"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         2: .line 252
            aload 0 /* this */
            ldc "in"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         3: .line 253
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 254
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testEmptyCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 258
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         1: .line 259
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_MissingCommand"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         2: .line 260
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            new java.util.LinkedList
            dup
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc ""
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.LinkedList.<init>:(Ljava/util/Collection;)V
            invokevirtual org.graalvm.component.installer.SimpleGetopt.setParameters:(Ljava/util/LinkedList;)V
         3: .line 261
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 262
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testEmptyParameter();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 266
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            new java.util.LinkedList
            dup
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "install"
            aastore
            dup
            iconst_1
            ldc ""
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokespecial java.util.LinkedList.<init>:(Ljava/util/Collection;)V
            invokevirtual org.graalvm.component.installer.SimpleGetopt.setParameters:(Ljava/util/LinkedList;)V
         1: .line 267
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
         2: .line 268
            ldc ""
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 269
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testDoubleDashOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 273
            aload 0 /* this */
            ldc "--e --v install --x param1"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 275
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 277
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getCommand:()Ljava/lang/String;
            astore 1 /* cmd */
        start local 1 // java.lang.String cmd
         3: .line 278
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 2 /* opts */
        start local 2 // java.util.Map opts
         4: .line 280
            aload 2 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 281
            aload 2 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 282
            aload 2 /* opts */
            ldc "x"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         7: .line 283
            ldc "install"
            aload 1 /* cmd */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
         8: .line 284
            ldc "param1"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 285
            return
        end local 2 // java.util.Map opts
        end local 1 // java.lang.String cmd
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3   10     1   cmd  Ljava/lang/String;
            4   10     2  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testDoubleDashParamOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 289
            aload 0 /* this */
            ldc "--e --v install --C catalog --x param1"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 291
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 293
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getCommand:()Ljava/lang/String;
            astore 1 /* cmd */
        start local 1 // java.lang.String cmd
         3: .line 294
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 2 /* opts */
        start local 2 // java.util.Map opts
         4: .line 296
            aload 2 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         5: .line 297
            aload 2 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 298
            aload 2 /* opts */
            ldc "x"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         7: .line 299
            aload 2 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         8: .line 300
            ldc "catalog"
            aload 2 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 302
            ldc "install"
            aload 1 /* cmd */
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
        10: .line 303
            ldc "param1"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
        11: .line 304
            return
        end local 2 // java.util.Map opts
        end local 1 // java.lang.String cmd
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3   12     1   cmd  Ljava/lang/String;
            4   12     2  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testLongOption();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 308
            aload 0 /* this */
            ldc "--help"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 309
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 311
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 312
            aload 1 /* opts */
            ldc "h"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         4: .line 315
            aload 1 /* opts */
            ldc "e"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
         5: .line 316
            aload 1 /* opts */
            ldc "l"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
         6: .line 317
            aload 1 /* opts */
            ldc "p"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNull:(Ljava/lang/Object;)V
         7: .line 318
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    8     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testLongOptionAppendedParameter();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 322
            aload 0 /* this */
            ldc "--catalogbubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 324
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc Lorg/graalvm/component/installer/FailedOperationException;
            invokevirtual org.junit.rules.ExpectedException.expect:(Ljava/lang/Class;)V
         2: .line 325
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.exception:Lorg/junit/rules/ExpectedException;
            ldc "ERROR_UnsupportedGlobalOption"
            invokevirtual org.junit.rules.ExpectedException.expectMessage:(Ljava/lang/String;)V
         3: .line 326
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         4: .line 327
            return
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testLongOptionWithParameterBeforeCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 331
            aload 0 /* this */
            ldc "--custom-catalog bubu install"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 333
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 335
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 336
            ldc "bubu"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 337
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    5     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testLongOptionWithParameterAfterCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 341
            aload 0 /* this */
            ldc "install --custom-catalog bubu "
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 343
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 344
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 345
            ldc "bubu"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 346
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    5     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testComputeAbbreviations();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 350
            aload 0 /* this */
            ldc "install --user bubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 351
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            bipush 8
            anewarray java.lang.String
            dup
            iconst_0
            ldc "list"
            aastore
            dup
            iconst_1
            ldc "list-files"
            aastore
            dup
            iconst_2
            ldc "file-list"
            aastore
            dup
            iconst_3
            ldc "force"
            aastore
            dup
            iconst_4
            ldc "replace"
            aastore
            dup
            iconst_5
            ldc "rewrite"
            aastore
            dup
            bipush 6
            ldc "verify"
            aastore
            dup
            bipush 7
            ldc "signature"
            aastore
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.computeAbbreviations:(Ljava/util/Collection;)Ljava/util/Map;
            astore 1 /* abbrevs */
        start local 1 // java.util.Map abbrevs
         2: .line 353
            aconst_null
            aload 1 /* abbrevs */
            ldc "list"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 354
            ldc "list-files"
            aload 1 /* abbrevs */
            ldc "list-"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 355
            ldc "list-files"
            aload 1 /* abbrevs */
            ldc "list-file"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         5: .line 357
            ldc "force"
            aload 1 /* abbrevs */
            ldc "fo"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         6: .line 359
            aconst_null
            aload 1 /* abbrevs */
            ldc "re"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         7: .line 360
            ldc "rewrite"
            aload 1 /* abbrevs */
            ldc "rew"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 361
            ldc "replace"
            aload 1 /* abbrevs */
            ldc "rep"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 362
            return
        end local 1 // java.util.Map abbrevs
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            2   10     1  abbrevs  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testLongOptionAbbreviation();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 366
            aload 0 /* this */
            ldc "install --long-user bubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 368
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 369
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 370
            ldc "bubu"
            aload 1 /* opts */
            ldc "U"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 371
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    5     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOptionAliasesNoParam();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 375
            aload 0 /* this */
            ldc "install -F bubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 376
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 377
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 378
            ldc ""
            aload 1 /* opts */
            ldc "L"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 379
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    5     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOptionAliasesParamsCommand();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 383
            aload 0 /* this */
            ldc "install -9 bubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 384
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            ldc "install"
            ldc "9"
            ldc "=C"
            invokevirtual org.graalvm.component.installer.SimpleGetopt.addCommandOption:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
         2: .line 385
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         3: .line 386
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         4: .line 387
            ldc "bubu"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         5: .line 388
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            4    6     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testOptionAliasesParamsGlobal();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 392
            aload 0 /* this */
            ldc "install -8 bubu"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 393
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         2: .line 394
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         3: .line 395
            ldc "bubu"
            aload 1 /* opts */
            ldc "C"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         4: .line 396
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            3    5     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testIgnoreUnknownCommands();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.graalvm.component.installer.SimpleGetoptTest this
         0: .line 400
            aload 0 /* this */
            ldc "-v bubak 1"
            invokevirtual org.graalvm.component.installer.SimpleGetoptTest.setParams:(Ljava/lang/String;)V
         1: .line 401
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            iconst_1
            invokevirtual org.graalvm.component.installer.SimpleGetopt.ignoreUnknownCommands:(Z)Lorg/graalvm/component/installer/SimpleGetopt;
            pop
         2: .line 402
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.process:()V
         3: .line 403
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getOptValues:()Ljava/util/Map;
            astore 1 /* opts */
        start local 1 // java.util.Map opts
         4: .line 404
            lconst_1
            aload 1 /* opts */
            invokeinterface java.util.Map.size:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         5: .line 405
            aload 1 /* opts */
            ldc "v"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertNotNull:(Ljava/lang/Object;)V
         6: .line 407
            ldc 2
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            invokevirtual java.util.LinkedList.size:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         7: .line 408
            ldc "bubak"
            aload 0 /* this */
            getfield org.graalvm.component.installer.SimpleGetoptTest.getopt:Lorg/graalvm/component/installer/SimpleGetopt;
            invokevirtual org.graalvm.component.installer.SimpleGetopt.getPositionalParameters:()Ljava/util/LinkedList;
            iconst_0
            invokevirtual java.util.LinkedList.get:(I)Ljava/lang/Object;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 409
            return
        end local 1 // java.util.Map opts
        end local 0 // org.graalvm.component.installer.SimpleGetoptTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/graalvm/component/installer/SimpleGetoptTest;
            4    9     1  opts  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "SimpleGetoptTest.java"
NestMembers:
  org.graalvm.component.installer.SimpleGetoptTest$1
InnerClasses:
  org.graalvm.component.installer.SimpleGetoptTest$1