public class io.reactivex.subscribers.TestSubscriber<T> extends io.reactivex.observers.BaseTestConsumer<T, io.reactivex.subscribers.TestSubscriber<T>> implements io.reactivex.FlowableSubscriber<T>, org.reactivestreams.Subscription, io.reactivex.disposables.Disposable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.reactivex.subscribers.TestSubscriber
  super_class: io.reactivex.observers.BaseTestConsumer
{
  private final org.reactivestreams.Subscriber<? super T> downstream;
    descriptor: Lorg/reactivestreams/Subscriber;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/reactivestreams/Subscriber<-TT;>;

  private volatile boolean cancelled;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private final java.util.concurrent.atomic.AtomicReference<org.reactivestreams.Subscription> upstream;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lorg/reactivestreams/Subscription;>;

  private final java.util.concurrent.atomic.AtomicLong missedRequested;
    descriptor: Ljava/util/concurrent/atomic/AtomicLong;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private io.reactivex.internal.fuseable.QueueSubscription<T> qs;
    descriptor: Lio/reactivex/internal/fuseable/QueueSubscription;
    flags: (0x0002) ACC_PRIVATE
    Signature: Lio/reactivex/internal/fuseable/QueueSubscription<TT;>;

  public static <T> io.reactivex.subscribers.TestSubscriber<T> create();
    descriptor: ()Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 63
            new io.reactivex.subscribers.TestSubscriber
            dup
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public static <T> io.reactivex.subscribers.TestSubscriber<T> create(long);
    descriptor: (J)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // long initialRequested
         0: .line 73
            new io.reactivex.subscribers.TestSubscriber
            dup
            lload 0 /* initialRequested */
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:(J)V
            areturn
        end local 0 // long initialRequested
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0  initialRequested  J
    Signature: <T:Ljava/lang/Object;>(J)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
                  Name  Flags
      initialRequested  

  public static <T> io.reactivex.subscribers.TestSubscriber<T> create(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.reactivestreams.Subscriber delegate
         0: .line 83
            new io.reactivex.subscribers.TestSubscriber
            dup
            aload 0 /* delegate */
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:(Lorg/reactivestreams/Subscriber;)V
            areturn
        end local 0 // org.reactivestreams.Subscriber delegate
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  delegate  Lorg/reactivestreams/Subscriber<-TT;>;
    Signature: <T:Ljava/lang/Object;>(Lorg/reactivestreams/Subscriber<-TT;>;)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
          Name  Flags
      delegate  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 90
            aload 0 /* this */
            getstatic io.reactivex.subscribers.TestSubscriber$EmptySubscriber.INSTANCE:Lio/reactivex/subscribers/TestSubscriber$EmptySubscriber;
            ldc 9223372036854775807
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:(Lorg/reactivestreams/Subscriber;J)V
         1: .line 91
            return
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public void <init>(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // long initialRequest
         0: .line 100
            aload 0 /* this */
            getstatic io.reactivex.subscribers.TestSubscriber$EmptySubscriber.INSTANCE:Lio/reactivex/subscribers/TestSubscriber$EmptySubscriber;
            lload 1 /* initialRequest */
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:(Lorg/reactivestreams/Subscriber;J)V
         1: .line 101
            return
        end local 1 // long initialRequest
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    2     1  initialRequest  J
    MethodParameters:
                Name  Flags
      initialRequest  

  public void <init>(org.reactivestreams.Subscriber<? super T>);
    descriptor: (Lorg/reactivestreams/Subscriber;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // org.reactivestreams.Subscriber downstream
         0: .line 108
            aload 0 /* this */
            aload 1 /* downstream */
            ldc 9223372036854775807
            invokespecial io.reactivex.subscribers.TestSubscriber.<init>:(Lorg/reactivestreams/Subscriber;J)V
         1: .line 109
            return
        end local 1 // org.reactivestreams.Subscriber downstream
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    2     1  downstream  Lorg/reactivestreams/Subscriber<-TT;>;
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;)V
    MethodParameters:
            Name  Flags
      downstream  

  public void <init>(org.reactivestreams.Subscriber<? super T>, );
    descriptor: (Lorg/reactivestreams/Subscriber;J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // org.reactivestreams.Subscriber actual
        start local 2 // long initialRequest
         0: .line 119
            aload 0 /* this */
            invokespecial io.reactivex.observers.BaseTestConsumer.<init>:()V
         1: .line 120
            lload 2 /* initialRequest */
            lconst_0
            lcmp
            ifge 3
         2: .line 121
            new java.lang.IllegalArgumentException
            dup
            ldc "Negative initial request not allowed"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 123
      StackMap locals: io.reactivex.subscribers.TestSubscriber org.reactivestreams.Subscriber long
      StackMap stack:
            aload 0 /* this */
            aload 1 /* actual */
            putfield io.reactivex.subscribers.TestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
         4: .line 124
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
         5: .line 125
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicLong
            dup
            lload 2 /* initialRequest */
            invokespecial java.util.concurrent.atomic.AtomicLong.<init>:(J)V
            putfield io.reactivex.subscribers.TestSubscriber.missedRequested:Ljava/util/concurrent/atomic/AtomicLong;
         6: .line 126
            return
        end local 2 // long initialRequest
        end local 1 // org.reactivestreams.Subscriber actual
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    7     1          actual  Lorg/reactivestreams/Subscriber<-TT;>;
            0    7     2  initialRequest  J
    Signature: (Lorg/reactivestreams/Subscriber<-TT;>;J)V
    MethodParameters:
                Name  Flags
      actual          
      initialRequest  

  public void onSubscribe(org.reactivestreams.Subscription);
    descriptor: (Lorg/reactivestreams/Subscription;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // org.reactivestreams.Subscription s
         0: .line 131
            aload 0 /* this */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            putfield io.reactivex.subscribers.TestSubscriber.lastThread:Ljava/lang/Thread;
         1: .line 133
            aload 1 /* s */
            ifnonnull 4
         2: .line 134
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.NullPointerException
            dup
            ldc "onSubscribe received a null Subscription"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 135
            return
         4: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 1 /* s */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         5: .line 138
            aload 1 /* s */
            invokeinterface org.reactivestreams.Subscription.cancel:()V
         6: .line 139
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            getstatic io.reactivex.internal.subscriptions.SubscriptionHelper.CANCELLED:Lio/reactivex/internal/subscriptions/SubscriptionHelper;
            if_acmpeq 8
         7: .line 140
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "onSubscribe received multiple subscriptions: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* s */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 142
      StackMap locals:
      StackMap stack:
            return
         9: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.initialFusionMode:I
            ifeq 26
        10: .line 146
            aload 1 /* s */
            instanceof io.reactivex.internal.fuseable.QueueSubscription
            ifeq 26
        11: .line 147
            aload 0 /* this */
            aload 1 /* s */
            checkcast io.reactivex.internal.fuseable.QueueSubscription
            putfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
        12: .line 149
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.initialFusionMode:I
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.requestFusion:(I)I
            istore 2 /* m */
        start local 2 // int m
        13: .line 150
            aload 0 /* this */
            iload 2 /* m */
            putfield io.reactivex.subscribers.TestSubscriber.establishedFusionMode:I
        14: .line 152
            iload 2 /* m */
            iconst_1
            if_icmpne 26
        15: .line 153
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
        16: .line 154
            aload 0 /* this */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            putfield io.reactivex.subscribers.TestSubscriber.lastThread:Ljava/lang/Thread;
        17: .line 157
            goto 19
        start local 3 // java.lang.Object t
        18: .line 158
      StackMap locals: int java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.values:Ljava/util/List;
            aload 3 /* t */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Object t
        19: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.poll:()Ljava/lang/Object;
            dup
            astore 3 /* t */
        start local 3 // java.lang.Object t
        20: ifnonnull 18
        21: .line 160
            aload 0 /* this */
            dup
            getfield io.reactivex.subscribers.TestSubscriber.completions:J
            lconst_1
            ladd
            putfield io.reactivex.subscribers.TestSubscriber.completions:J
        end local 3 // java.lang.Object t
        22: .line 161
            goto 25
      StackMap locals:
      StackMap stack: java.lang.Throwable
        23: astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
        24: .line 163
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            aload 3 /* ex */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 3 // java.lang.Throwable ex
        25: .line 165
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int m
        26: .line 170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* s */
            invokeinterface org.reactivestreams.Subscriber.onSubscribe:(Lorg/reactivestreams/Subscription;)V
        27: .line 172
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.missedRequested:Ljava/util/concurrent/atomic/AtomicLong;
            lconst_0
            invokevirtual java.util.concurrent.atomic.AtomicLong.getAndSet:(J)J
            lstore 2 /* mr */
        start local 2 // long mr
        28: .line 173
            lload 2 /* mr */
            lconst_0
            lcmp
            ifeq 30
        29: .line 174
            aload 1 /* s */
            lload 2 /* mr */
            invokeinterface org.reactivestreams.Subscription.request:(J)V
        30: .line 177
      StackMap locals: long
      StackMap stack:
            aload 0 /* this */
            invokevirtual io.reactivex.subscribers.TestSubscriber.onStart:()V
        31: .line 178
            return
        end local 2 // long mr
        end local 1 // org.reactivestreams.Subscription s
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   32     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0   32     1     s  Lorg/reactivestreams/Subscription;
           13   26     2     m  I
           18   19     3     t  TT;
           20   22     3     t  TT;
           24   25     3    ex  Ljava/lang/Throwable;
           28   32     2    mr  J
      Exception table:
        from    to  target  type
          17    22      23  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      s     

  protected void onStart();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 185
            return
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public void onNext();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // java.lang.Object t
         0: .line 189
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
            ifne 4
         1: .line 190
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
         2: .line 191
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnonnull 4
         3: .line 192
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.IllegalStateException
            dup
            ldc "onSubscribe not called in proper order"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            putfield io.reactivex.subscribers.TestSubscriber.lastThread:Ljava/lang/Thread;
         5: .line 197
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.establishedFusionMode:I
            iconst_2
            if_icmpne 14
         6: .line 199
            goto 8
         7: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.values:Ljava/util/List;
            aload 1 /* t */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.poll:()Ljava/lang/Object;
            dup
            astore 1 /* t */
            ifnonnull 7
         9: .line 202
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
        11: .line 204
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            aload 2 /* ex */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        12: .line 205
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            invokeinterface io.reactivex.internal.fuseable.QueueSubscription.cancel:()V
        end local 2 // java.lang.Throwable ex
        13: .line 207
      StackMap locals:
      StackMap stack:
            return
        14: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.values:Ljava/util/List;
            aload 1 /* t */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        15: .line 212
            aload 1 /* t */
            ifnonnull 17
        16: .line 213
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.NullPointerException
            dup
            ldc "onNext received a null value"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        17: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onNext:(Ljava/lang/Object;)V
        18: .line 217
            return
        end local 1 // java.lang.Object t
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0   19     1     t  TT;
           11   13     2    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           6     9      10  Class java.lang.Throwable
    Signature: (TT;)V
    MethodParameters:
      Name  Flags
      t     

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // java.lang.Throwable t
         0: .line 221
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
            ifne 4
         1: .line 222
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
         2: .line 223
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnonnull 4
         3: .line 224
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.NullPointerException
            dup
            ldc "onSubscribe not called in proper order"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            putfield io.reactivex.subscribers.TestSubscriber.lastThread:Ljava/lang/Thread;
         5: .line 229
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            aload 1 /* t */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 231
            aload 1 /* t */
            ifnonnull 8
         7: .line 232
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.IllegalStateException
            dup
            ldc "onError received a null Throwable"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            aload 1 /* t */
            invokeinterface org.reactivestreams.Subscriber.onError:(Ljava/lang/Throwable;)V
         9: .line 236
            goto 13
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
        11: .line 237
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.done:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        12: .line 238
            aload 2
            athrow
        13: .line 237
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.done:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        14: .line 239
            return
        end local 1 // java.lang.Throwable t
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0   15     1     t  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           4    10      10  any
    MethodParameters:
      Name  Flags
      t     

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 243
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
            ifne 4
         1: .line 244
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subscribers.TestSubscriber.checkSubscriptionOnce:Z
         2: .line 245
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnonnull 4
         3: .line 246
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            new java.lang.IllegalStateException
            dup
            ldc "onSubscribe not called in proper order"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokestatic java.lang.Thread.currentThread:()Ljava/lang/Thread;
            putfield io.reactivex.subscribers.TestSubscriber.lastThread:Ljava/lang/Thread;
         5: .line 251
            aload 0 /* this */
            dup
            getfield io.reactivex.subscribers.TestSubscriber.completions:J
            lconst_1
            ladd
            putfield io.reactivex.subscribers.TestSubscriber.completions:J
         6: .line 253
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.downstream:Lorg/reactivestreams/Subscriber;
            invokeinterface org.reactivestreams.Subscriber.onComplete:()V
         7: .line 254
            goto 11
      StackMap locals:
      StackMap stack: java.lang.Throwable
         8: astore 1
         9: .line 255
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.done:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        10: .line 256
            aload 1
            athrow
        11: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.done:Ljava/util/concurrent/CountDownLatch;
            invokevirtual java.util.concurrent.CountDownLatch.countDown:()V
        12: .line 257
            return
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
      Exception table:
        from    to  target  type
           4     8       8  any

  public final void request(long);
    descriptor: (J)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // long n
         0: .line 261
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.missedRequested:Ljava/util/concurrent/atomic/AtomicLong;
            lload 1 /* n */
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.deferredRequest:(Ljava/util/concurrent/atomic/AtomicReference;Ljava/util/concurrent/atomic/AtomicLong;J)V
         1: .line 262
            return
        end local 1 // long n
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    2     1     n  J
    MethodParameters:
      Name  Flags
      n     

  public final void cancel();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 266
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.cancelled:Z
            ifne 3
         1: .line 267
            aload 0 /* this */
            iconst_1
            putfield io.reactivex.subscribers.TestSubscriber.cancelled:Z
         2: .line 268
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokestatic io.reactivex.internal.subscriptions.SubscriptionHelper.cancel:(Ljava/util/concurrent/atomic/AtomicReference;)Z
            pop
         3: .line 270
      StackMap locals:
      StackMap stack:
            return
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final boolean isCancelled();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 277
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.cancelled:Z
            ireturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final void dispose();
    descriptor: ()V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 282
            aload 0 /* this */
            invokevirtual io.reactivex.subscribers.TestSubscriber.cancel:()V
         1: .line 283
            return
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final boolean isDisposed();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 287
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.cancelled:Z
            ireturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final boolean hasSubscription();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 297
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final io.reactivex.subscribers.TestSubscriber<T> assertSubscribed();
    descriptor: ()Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 308
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnonnull 2
         1: .line 309
            aload 0 /* this */
            ldc "Not subscribed!"
            invokevirtual io.reactivex.subscribers.TestSubscriber.fail:(Ljava/lang/String;)Ljava/lang/AssertionError;
            athrow
         2: .line 311
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
    Signature: ()Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final io.reactivex.subscribers.TestSubscriber<T> assertNotSubscribed();
    descriptor: ()Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 320
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.upstream:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnull 2
         1: .line 321
            aload 0 /* this */
            ldc "Subscribed!"
            invokevirtual io.reactivex.subscribers.TestSubscriber.fail:(Ljava/lang/String;)Ljava/lang/AssertionError;
            athrow
         2: .line 323
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.errors:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 4
         3: .line 324
            aload 0 /* this */
            ldc "Not subscribed but errors found"
            invokevirtual io.reactivex.subscribers.TestSubscriber.fail:(Ljava/lang/String;)Ljava/lang/AssertionError;
            athrow
         4: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
    Signature: ()Lio/reactivex/subscribers/TestSubscriber<TT;>;

  final io.reactivex.subscribers.TestSubscriber<T> setInitialFusionMode(int);
    descriptor: (I)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // int mode
         0: .line 337
            aload 0 /* this */
            iload 1 /* mode */
            putfield io.reactivex.subscribers.TestSubscriber.initialFusionMode:I
         1: .line 338
            aload 0 /* this */
            areturn
        end local 1 // int mode
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    2     1  mode  I
    Signature: (I)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
      Name  Flags
      mode  

  final io.reactivex.subscribers.TestSubscriber<T> assertFusionMode(int);
    descriptor: (I)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // int mode
         0: .line 349
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.establishedFusionMode:I
            istore 2 /* m */
        start local 2 // int m
         1: .line 350
            iload 2 /* m */
            iload 1 /* mode */
            if_icmpeq 7
         2: .line 351
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            ifnull 6
         3: .line 352
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Fusion mode different. Expected: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* mode */
            invokestatic io.reactivex.subscribers.TestSubscriber.fusionModeToString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 353
            ldc ", actual: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* m */
            invokestatic io.reactivex.subscribers.TestSubscriber.fusionModeToString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         5: .line 352
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 355
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            ldc "Upstream is not fuseable"
            invokevirtual io.reactivex.subscribers.TestSubscriber.fail:(Ljava/lang/String;)Ljava/lang/AssertionError;
            athrow
         7: .line 358
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 2 // int m
        end local 1 // int mode
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    8     1  mode  I
            1    8     2     m  I
    Signature: (I)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
      Name  Flags
      mode  

  static java.lang.String fusionModeToString(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int mode
         0: .line 362
            iload 0 /* mode */
            tableswitch { // 0 - 2
                    0: 1
                    1: 2
                    2: 3
              default: 4
          }
         1: .line 363
      StackMap locals:
      StackMap stack:
            ldc "NONE"
            areturn
         2: .line 364
      StackMap locals:
      StackMap stack:
            ldc "SYNC"
            areturn
         3: .line 365
      StackMap locals:
      StackMap stack:
            ldc "ASYNC"
            areturn
         4: .line 366
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Unknown("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* mode */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // int mode
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  mode  I
    MethodParameters:
      Name  Flags
      mode  

  final io.reactivex.subscribers.TestSubscriber<T> assertFuseable();
    descriptor: ()Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 377
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            ifnonnull 2
         1: .line 378
            new java.lang.AssertionError
            dup
            ldc "Upstream is not fuseable."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 380
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
    Signature: ()Lio/reactivex/subscribers/TestSubscriber<TT;>;

  final io.reactivex.subscribers.TestSubscriber<T> assertNotFuseable();
    descriptor: ()Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // io.reactivex.subscribers.TestSubscriber this
         0: .line 390
            aload 0 /* this */
            getfield io.reactivex.subscribers.TestSubscriber.qs:Lio/reactivex/internal/fuseable/QueueSubscription;
            ifnull 2
         1: .line 391
            new java.lang.AssertionError
            dup
            ldc "Upstream is fuseable."
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         2: .line 393
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
    Signature: ()Lio/reactivex/subscribers/TestSubscriber<TT;>;

  public final io.reactivex.subscribers.TestSubscriber<T> assertOf(io.reactivex.functions.Consumer<? super io.reactivex.subscribers.TestSubscriber<T>>);
    descriptor: (Lio/reactivex/functions/Consumer;)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // io.reactivex.functions.Consumer check
         0: .line 403
            aload 1 /* check */
            aload 0 /* this */
            invokeinterface io.reactivex.functions.Consumer.accept:(Ljava/lang/Object;)V
         1: .line 404
            goto 4
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 2 /* ex */
        start local 2 // java.lang.Throwable ex
         3: .line 405
            aload 2 /* ex */
            invokestatic io.reactivex.internal.util.ExceptionHelper.wrapOrThrow:(Ljava/lang/Throwable;)Ljava/lang/RuntimeException;
            athrow
        end local 2 // java.lang.Throwable ex
         4: .line 407
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // io.reactivex.functions.Consumer check
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    5     1  check  Lio/reactivex/functions/Consumer<-Lio/reactivex/subscribers/TestSubscriber<TT;>;>;
            3    4     2     ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    Signature: (Lio/reactivex/functions/Consumer<-Lio/reactivex/subscribers/TestSubscriber<TT;>;>;)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
       Name  Flags
      check  

  public final io.reactivex.subscribers.TestSubscriber<T> requestMore(long);
    descriptor: (J)Lio/reactivex/subscribers/TestSubscriber;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // io.reactivex.subscribers.TestSubscriber this
        start local 1 // long n
         0: .line 418
            aload 0 /* this */
            lload 1 /* n */
            invokevirtual io.reactivex.subscribers.TestSubscriber.request:(J)V
         1: .line 419
            aload 0 /* this */
            areturn
        end local 1 // long n
        end local 0 // io.reactivex.subscribers.TestSubscriber this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/subscribers/TestSubscriber<TT;>;
            0    2     1     n  J
    Signature: (J)Lio/reactivex/subscribers/TestSubscriber<TT;>;
    MethodParameters:
      Name  Flags
      n     

  public io.reactivex.observers.BaseTestConsumer assertNotSubscribed();
    descriptor: ()Lio/reactivex/observers/BaseTestConsumer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.reactivex.subscribers.TestSubscriber.assertNotSubscribed:()Lio/reactivex/subscribers/TestSubscriber;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public io.reactivex.observers.BaseTestConsumer assertSubscribed();
    descriptor: ()Lio/reactivex/observers/BaseTestConsumer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual io.reactivex.subscribers.TestSubscriber.assertSubscribed:()Lio/reactivex/subscribers/TestSubscriber;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Lio/reactivex/observers/BaseTestConsumer<TT;Lio/reactivex/subscribers/TestSubscriber<TT;>;>;Lio/reactivex/FlowableSubscriber<TT;>;Lorg/reactivestreams/Subscription;Lio/reactivex/disposables/Disposable;
SourceFile: "TestSubscriber.java"
NestMembers:
  io.reactivex.subscribers.TestSubscriber$EmptySubscriber
InnerClasses:
  final EmptySubscriber = io.reactivex.subscribers.TestSubscriber$EmptySubscriber of io.reactivex.subscribers.TestSubscriber