-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathmockito-core-4.4.0.diffoscope
1488 lines (1150 loc) · 81.5 KB
/
mockito-core-4.4.0.diffoscope
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 / 12 repository/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0.jar central/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0.jar
--- repository/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0.jar
+++ central/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0.jar
├── zipinfo {}
│ @@ -5,11 +5,11 @@
│ drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/
│ drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/
│ drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/
│ drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/
│ -rw-r--r-- 2.0 unx 3214 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidByteBuddyMockMaker.class
│ -rw-r--r-- 2.0 unx 2105 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidLoadingStrategy.class
│ -rw-r--r-- 2.0 unx 4329 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidTempFileLocator.class
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 mockito-extensions/
│ --rw-rw-r-- 2.0 unx 63 b- defN 80-Feb-01 00:00 mockito-extensions/org.mockito.plugins.MockMaker
│ --rw-rw-r-- 2.0 unx 1080 b- defN 80-Feb-01 00:00 LICENSE
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 mockito-extensions/
│ +-rw-r--r-- 2.0 unx 63 b- defN 80-Feb-01 00:00 mockito-extensions/org.mockito.plugins.MockMaker
│ +-rw-r--r-- 2.0 unx 1080 b- defN 80-Feb-01 00:00 LICENSE
│ 13 files, 10816 bytes uncompressed, 5482 bytes compressed: 49.3%
2 / 12 repository/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0-sources.jar central/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0-sources.jar
--- repository/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0-sources.jar
+++ central/org/mockito/mockito-android/4.4.0/mockito-android-4.4.0-sources.jar
├── zipinfo {}
│ @@ -1,15 +1,15 @@
│ Zip file size: 5195 bytes, number of entries: 13
│ drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 META-INF/
│ -rw-r--r-- 2.0 unx 25 b- defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 mockito-extensions/
│ --rw-rw-r-- 2.0 unx 63 b- defN 80-Feb-01 00:00 mockito-extensions/org.mockito.plugins.MockMaker
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/
│ -drwxrwxr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/
│ --rw-rw-r-- 2.0 unx 2268 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidByteBuddyMockMaker.java
│ --rw-rw-r-- 2.0 unx 1618 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidLoadingStrategy.java
│ --rw-rw-r-- 2.0 unx 3566 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidTempFileLocator.java
│ --rw-rw-r-- 2.0 unx 1080 b- defN 80-Feb-01 00:00 LICENSE
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 mockito-extensions/
│ +-rw-r--r-- 2.0 unx 63 b- defN 80-Feb-01 00:00 mockito-extensions/org.mockito.plugins.MockMaker
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/
│ +drwxr-xr-x 2.0 unx 0 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/
│ +-rw-r--r-- 2.0 unx 2268 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidByteBuddyMockMaker.java
│ +-rw-r--r-- 2.0 unx 1618 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidLoadingStrategy.java
│ +-rw-r--r-- 2.0 unx 3566 b- defN 80-Feb-01 00:00 org/mockito/android/internal/creation/AndroidTempFileLocator.java
│ +-rw-r--r-- 2.0 unx 1080 b- defN 80-Feb-01 00:00 LICENSE
│ 13 files, 8620 bytes uncompressed, 3377 bytes compressed: 60.8%
3 / 12 repository/org/mockito/mockito-core/4.4.0/mockito-core-4.4.0.jar central/org/mockito/mockito-core/4.4.0/mockito-core-4.4.0.jar
--- repository/org/mockito/mockito-core/4.4.0/mockito-core-4.4.0.jar
+++ central/org/mockito/mockito-core/4.4.0/mockito-core-4.4.0.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 670819 bytes, number of entries: 654
│ +Zip file size: 672829 bytes, number of entries: 656
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 15696 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 15836 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 1080 bl defN 80-Feb-01 00:00 LICENSE
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/
│ -rw---- 2.0 fat 7321 bl defN 80-Feb-01 00:00 org/mockito/AdditionalAnswers.class
│ -rw---- 2.0 fat 8334 bl defN 80-Feb-01 00:00 org/mockito/AdditionalMatchers.class
│ -rw---- 2.0 fat 2338 bl defN 80-Feb-01 00:00 org/mockito/Answers.class
│ -rw---- 2.0 fat 1871 bl defN 80-Feb-01 00:00 org/mockito/ArgumentCaptor.class
│ @@ -128,15 +128,15 @@
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/injection/scanner/
│ -rw---- 2.0 fat 2524 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/injection/scanner/InjectMocksScanner.class
│ -rw---- 2.0 fat 2740 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/injection/scanner/MockScanner.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/
│ -rw---- 2.0 fat 4531 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/DefaultMockitoPlugins.class
│ -rw---- 2.0 fat 551 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/DefaultPluginSwitch.class
│ -rw---- 2.0 fat 1321 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginFileReader.class
│ --rw---- 2.0 fat 3119 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginFinder.class
│ +-rw---- 2.0 fat 3095 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginFinder.class
│ -rw---- 2.0 fat 4751 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginInitializer.class
│ -rw---- 2.0 fat 1715 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginLoader$1.class
│ -rw---- 2.0 fat 1578 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginLoader$2.class
│ -rw---- 2.0 fat 3832 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginLoader.class
│ -rw---- 2.0 fat 3377 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/PluginRegistry.class
│ -rw---- 2.0 fat 1743 bl defN 80-Feb-01 00:00 org/mockito/internal/configuration/plugins/Plugins.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/
│ @@ -144,67 +144,69 @@
│ -rw---- 2.0 fat 12021 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/MockSettingsImpl.class
│ -rw---- 2.0 fat 1426 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/SuspendMethod.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/
│ -rw---- 2.0 fat 447 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport$CrossClassLoaderSerializableMock.class
│ -rw---- 2.0 fat 4010 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport$CrossClassLoaderSerializationProxy.class
│ -rw---- 2.0 fat 5123 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport$MockitoMockObjectInputStream.class
│ -rw---- 2.0 fat 1741 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport$MockitoMockObjectOutputStream.class
│ --rw---- 2.0 fat 3620 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport.class
│ +-rw---- 2.0 fat 3616 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyCrossClassLoaderSerializationSupport.class
│ -rw---- 2.0 fat 5356 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ByteBuddyMockMaker.class
│ -rw---- 2.0 fat 698 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/BytecodeGenerator.class
│ -rw---- 2.0 fat 402 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ClassCreatingMockMaker.class
│ -rw---- 2.0 fat 392 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ConstructionCallback.class
│ -rw---- 2.0 fat 5916 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineByteBuddyMockMaker.class
│ -rw---- 2.0 fat 297 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator$1.class
│ -rw---- 2.0 fat 1181 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator$ParameterWritingVisitorWrapper$MethodParameterStrippingMethodVisitor.class
│ -rw---- 2.0 fat 4234 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator$ParameterWritingVisitorWrapper$ParameterAddingClassVisitor.class
│ -rw---- 2.0 fat 3895 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator$ParameterWritingVisitorWrapper.class
│ --rw---- 2.0 fat 21751 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.class
│ +-rw---- 2.0 fat 21747 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineBytecodeGenerator.class
│ -rw---- 2.0 fat 1857 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker$1.class
│ -rw---- 2.0 fat 4770 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker$InlineConstructionMockContext.class
│ -rw---- 2.0 fat 7616 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker$InlineConstructionMockControl.class
│ -rw---- 2.0 fat 3987 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker$InlineStaticMockControl.class
│ --rw---- 2.0 fat 30009 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker.class
│ +-rw---- 2.0 fat 30099 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/InlineDelegateByteBuddyMockMaker.class
│ -rw---- 2.0 fat 342 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockAccess.class
│ -rw---- 2.0 fat 1868 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockFeatures.class
│ -rw---- 2.0 fat 276 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$1.class
│ -rw---- 2.0 fat 9385 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ConstructorShortcut$1.class
│ -rw---- 2.0 fat 6140 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ConstructorShortcut.class
│ -rw---- 2.0 fat 2332 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForEquals.class
│ -rw---- 2.0 fat 2251 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForHashCode.class
│ -rw---- 2.0 fat 2144 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForReadObject.class
│ -rw---- 2.0 fat 3382 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ForStatic.class
│ -rw---- 2.0 fat 450 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$Identifier.class
│ -rw---- 2.0 fat 2287 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$RealMethodCall.class
│ -rw---- 2.0 fat 1143 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$ReturnValueWrapper.class
│ -rw---- 2.0 fat 1265 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$SelfCallInfo.class
│ --rw---- 2.0 fat 3344 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$SerializableRealMethodCall.class
│ +-rw---- 2.0 fat 3340 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$SerializableRealMethodCall.class
│ -rw---- 2.0 fat 2239 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice$StaticMethodCall.class
│ -rw---- 2.0 fat 17653 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodAdvice.class
│ -rw---- 2.0 fat 3120 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor$DispatcherDefaultingToRealMethod.class
│ -rw---- 2.0 fat 885 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor$ForEquals.class
│ -rw---- 2.0 fat 793 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor$ForHashCode.class
│ -rw---- 2.0 fat 1345 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor$ForWriteReplace.class
│ --rw---- 2.0 fat 3730 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor.class
│ +-rw---- 2.0 fat 3726 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/MockMethodInterceptor.class
│ -rw---- 2.0 fat 267 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ModuleHandler$1.class
│ -rw---- 2.0 fat 12596 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ModuleHandler$ModuleSystemFound.class
│ -rw---- 2.0 fat 2056 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ModuleHandler$NoModuleSystemFound.class
│ -rw---- 2.0 fat 1942 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/ModuleHandler.class
│ -rw---- 2.0 fat 1853 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassByteBuddyMockMaker$1.class
│ -rw---- 2.0 fat 9328 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassByteBuddyMockMaker.class
│ -rw---- 2.0 fat 18877 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassBytecodeGenerator.class
│ -rw---- 2.0 fat 297 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassInjectionLoader$1.class
│ -rw---- 2.0 fat 3676 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassInjectionLoader$WithLookup.class
│ -rw---- 2.0 fat 2195 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassInjectionLoader$WithReflection.class
│ -rw---- 2.0 fat 3775 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassInjectionLoader.class
│ -rw---- 2.0 fat 459 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/SubclassLoader.class
│ -rw---- 2.0 fat 312 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/TypeCachingBytecodeGenerator$1.class
│ -rw---- 2.0 fat 2255 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/TypeCachingBytecodeGenerator$MockitoMockKey.class
│ --rw---- 2.0 fat 5025 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/TypeCachingBytecodeGenerator.class
│ +-rw---- 2.0 fat 5017 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/TypeCachingBytecodeGenerator.class
│ -rw---- 2.0 fat 1777 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/TypeSupport.class
│ +-rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/inject/
│ +-rw---- 2.0 fat 4434 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.raw
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/instance/
│ -rw---- 2.0 fat 7601 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/instance/ConstructorInstantiator.class
│ -rw---- 2.0 fat 1448 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/instance/DefaultInstantiatorProvider.class
│ -rw---- 2.0 fat 964 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/instance/ObjenesisInstantiator.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/proxy/
│ -rw---- 2.0 fat 274 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/proxy/InvokeDefaultProxy$1.class
│ -rw---- 2.0 fat 3342 bl defN 80-Feb-01 00:00 org/mockito/internal/creation/proxy/InvokeDefaultProxy$InvokeDefaultRealMethod.class
│ @@ -242,22 +244,22 @@
│ -rw---- 2.0 fat 735 bl defN 80-Feb-01 00:00 org/mockito/internal/exceptions/stacktrace/DefaultStackTraceCleanerProvider.class
│ -rw---- 2.0 fat 3696 bl defN 80-Feb-01 00:00 org/mockito/internal/exceptions/stacktrace/StackTraceFilter.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/exceptions/util/
│ -rw---- 2.0 fat 1856 bl defN 80-Feb-01 00:00 org/mockito/internal/exceptions/util/ScenarioPrinter.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/framework/
│ -rw---- 2.0 fat 2281 bl defN 80-Feb-01 00:00 org/mockito/internal/framework/DefaultMockitoFramework.class
│ -rw---- 2.0 fat 1113 bl defN 80-Feb-01 00:00 org/mockito/internal/framework/DefaultMockitoSession$1.class
│ --rw---- 2.0 fat 4300 bl defN 80-Feb-01 00:00 org/mockito/internal/framework/DefaultMockitoSession.class
│ +-rw---- 2.0 fat 4296 bl defN 80-Feb-01 00:00 org/mockito/internal/framework/DefaultMockitoSession.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/hamcrest/
│ -rw---- 2.0 fat 1343 bl defN 80-Feb-01 00:00 org/mockito/internal/hamcrest/HamcrestArgumentMatcher.class
│ -rw---- 2.0 fat 877 bl defN 80-Feb-01 00:00 org/mockito/internal/hamcrest/MatcherGenericTypeExtractor.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/
│ -rw---- 2.0 fat 3530 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/InvocationNotifierHandler.class
│ -rw---- 2.0 fat 1319 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/MockHandlerFactory.class
│ --rw---- 2.0 fat 5579 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/MockHandlerImpl.class
│ +-rw---- 2.0 fat 5575 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/MockHandlerImpl.class
│ -rw---- 2.0 fat 2412 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/NotifiedMethodInvocationReport.class
│ -rw---- 2.0 fat 2006 bl defN 80-Feb-01 00:00 org/mockito/internal/handler/NullResultGuardian.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/invocation/
│ -rw---- 2.0 fat 178 bl defN 80-Feb-01 00:00 org/mockito/internal/invocation/AbstractAwareMethod.class
│ -rw---- 2.0 fat 300 bl defN 80-Feb-01 00:00 org/mockito/internal/invocation/ArgumentMatcherAction.class
│ -rw---- 2.0 fat 2572 bl defN 80-Feb-01 00:00 org/mockito/internal/invocation/ArgumentsProcessor.class
│ -rw---- 2.0 fat 3993 bl defN 80-Feb-01 00:00 org/mockito/internal/invocation/DefaultInvocationFactory.class
│ @@ -311,30 +313,30 @@
│ -rw---- 2.0 fat 234 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/TestFinishedEvent.class
│ -rw---- 2.0 fat 807 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UniversalTestListener$1.class
│ -rw---- 2.0 fat 4622 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UniversalTestListener.class
│ -rw---- 2.0 fat 2371 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UnnecessaryStubbingsReporter.class
│ -rw---- 2.0 fat 2622 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UnusedStubbings.class
│ -rw---- 2.0 fat 1375 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UnusedStubbingsFinder$1.class
│ -rw---- 2.0 fat 3303 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/UnusedStubbingsFinder.class
│ --rw---- 2.0 fat 1664 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/VerificationCollectorImpl$1.class
│ +-rw---- 2.0 fat 1660 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/VerificationCollectorImpl$1.class
│ -rw---- 2.0 fat 1342 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/VerificationCollectorImpl$2.class
│ -rw---- 2.0 fat 2046 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/VerificationCollectorImpl$VerificationWrapper.class
│ -rw---- 2.0 fat 2897 bl defN 80-Feb-01 00:00 org/mockito/internal/junit/VerificationCollectorImpl.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/
│ -rw---- 2.0 fat 186 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/AutoCleanableListener.class
│ -rw---- 2.0 fat 1816 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/StubbingLookupNotifier$Event.class
│ -rw---- 2.0 fat 2258 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/StubbingLookupNotifier.class
│ -rw---- 2.0 fat 2075 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/VerificationStartedNotifier$Event.class
│ -rw---- 2.0 fat 3256 bl defN 80-Feb-01 00:00 org/mockito/internal/listeners/VerificationStartedNotifier.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/
│ -rw---- 2.0 fat 1342 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/And.class
│ -rw---- 2.0 fat 890 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/Any.class
│ -rw---- 2.0 fat 2463 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/ArrayEquals.class
│ -rw---- 2.0 fat 191 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/CapturesArguments.class
│ --rw---- 2.0 fat 2714 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/CapturingMatcher.class
│ +-rw---- 2.0 fat 2702 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/CapturingMatcher.class
│ -rw---- 2.0 fat 969 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/CompareEqual.class
│ -rw---- 2.0 fat 1683 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/CompareTo.class
│ -rw---- 2.0 fat 1164 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/Contains.class
│ -rw---- 2.0 fat 310 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/ContainsExtraTypeInfo.class
│ -rw---- 2.0 fat 1131 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/EndsWith.class
│ -rw---- 2.0 fat 1358 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/Equality.class
│ -rw---- 2.0 fat 2105 bl defN 80-Feb-01 00:00 org/mockito/internal/matchers/Equals.class
│ @@ -375,24 +377,24 @@
│ -rw---- 2.0 fat 921 bl defN 80-Feb-01 00:00 org/mockito/internal/progress/ThreadSafeMockingProgress.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/reporting/
│ -rw---- 2.0 fat 898 bl defN 80-Feb-01 00:00 org/mockito/internal/reporting/Discrepancy.class
│ -rw---- 2.0 fat 922 bl defN 80-Feb-01 00:00 org/mockito/internal/reporting/Pluralizer.class
│ -rw---- 2.0 fat 4147 bl defN 80-Feb-01 00:00 org/mockito/internal/reporting/PrintSettings.class
│ -rw---- 2.0 fat 3478 bl defN 80-Feb-01 00:00 org/mockito/internal/reporting/SmartPrinter.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/
│ --rw---- 2.0 fat 2245 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/DefaultInternalRunner$1$1.class
│ +-rw---- 2.0 fat 2241 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/DefaultInternalRunner$1$1.class
│ -rw---- 2.0 fat 2681 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/DefaultInternalRunner$1$2.class
│ -rw---- 2.0 fat 2788 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/DefaultInternalRunner$1.class
│ -rw---- 2.0 fat 1863 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/DefaultInternalRunner.class
│ -rw---- 2.0 fat 309 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/InternalRunner.class
│ -rw---- 2.0 fat 1093 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/RunnerFactory$1.class
│ -rw---- 2.0 fat 1286 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/RunnerFactory$2.class
│ -rw---- 2.0 fat 1117 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/RunnerFactory$3.class
│ -rw---- 2.0 fat 3358 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/RunnerFactory.class
│ --rw---- 2.0 fat 2385 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/StrictRunner.class
│ +-rw---- 2.0 fat 2381 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/StrictRunner.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/util/
│ -rw---- 2.0 fat 765 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/util/FailureDetector.class
│ -rw---- 2.0 fat 1907 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/util/RunnerProvider.class
│ -rw---- 2.0 fat 945 bl defN 80-Feb-01 00:00 org/mockito/internal/runners/util/TestMethodsFinder.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/session/
│ -rw---- 2.0 fat 3260 bl defN 80-Feb-01 00:00 org/mockito/internal/session/DefaultMockitoSessionBuilder.class
│ -rw---- 2.0 fat 832 bl defN 80-Feb-01 00:00 org/mockito/internal/session/MockitoLoggerAdapter.class
│ @@ -480,26 +482,26 @@
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/
│ -rw---- 2.0 fat 1420 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/DetachedThreadLocal$1.class
│ -rw---- 2.0 fat 1523 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/DetachedThreadLocal$2.class
│ -rw---- 2.0 fat 970 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/DetachedThreadLocal$3.class
│ -rw---- 2.0 fat 1369 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/DetachedThreadLocal$Cleaner.class
│ -rw---- 2.0 fat 3934 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/DetachedThreadLocal.class
│ -rw---- 2.0 fat 273 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$1.class
│ --rw---- 2.0 fat 3239 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$EntryIterator.class
│ +-rw---- 2.0 fat 3235 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$EntryIterator.class
│ -rw---- 2.0 fat 1327 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$LatentKey.class
│ -rw---- 2.0 fat 2376 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$SimpleEntry.class
│ -rw---- 2.0 fat 1487 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$WeakKey.class
│ -rw---- 2.0 fat 1935 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap$WithInlinedExpunction.class
│ -rw---- 2.0 fat 5114 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentMap.class
│ -rw---- 2.0 fat 956 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentSet$1.class
│ -rw---- 2.0 fat 1353 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentSet$Cleaner.class
│ -rw---- 2.0 fat 1781 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentSet$ReducingIterator.class
│ -rw---- 2.0 fat 3314 bl defN 80-Feb-01 00:00 org/mockito/internal/util/concurrent/WeakConcurrentSet.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/util/io/
│ --rw---- 2.0 fat 2652 bl defN 80-Feb-01 00:00 org/mockito/internal/util/io/IOUtil.class
│ +-rw---- 2.0 fat 2648 bl defN 80-Feb-01 00:00 org/mockito/internal/util/io/IOUtil.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/
│ -rw---- 2.0 fat 3462 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/BeanPropertySetter.class
│ -rw---- 2.0 fat 1111 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/FieldInitializationReport.class
│ -rw---- 2.0 fat 436 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/FieldInitializer$ConstructorArgumentResolver.class
│ -rw---- 2.0 fat 381 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/FieldInitializer$ConstructorInstantiator.class
│ -rw---- 2.0 fat 3366 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/FieldInitializer$NoArgConstructorInstantiator.class
│ -rw---- 2.0 fat 2587 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/FieldInitializer$ParameterizedConstructorInstantiator$1.class
│ @@ -521,18 +523,18 @@
│ -rw---- 2.0 fat 2590 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/GenericMetadataSupport$TypeVarBoundedType.class
│ -rw---- 2.0 fat 4755 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/GenericMetadataSupport$TypeVariableReturnType.class
│ -rw---- 2.0 fat 2271 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/GenericMetadataSupport$WildCardBoundedType.class
│ -rw---- 2.0 fat 9901 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/GenericMetadataSupport.class
│ -rw---- 2.0 fat 2114 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/GenericTypeExtractor.class
│ -rw---- 2.0 fat 3666 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/InstanceField.class
│ -rw---- 2.0 fat 724 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/InstrumentationMemberAccessor$Dispatcher.class
│ --rw---- 2.0 fat 15405 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/InstrumentationMemberAccessor.class
│ +-rw---- 2.0 fat 15401 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/InstrumentationMemberAccessor.class
│ -rw---- 2.0 fat 2336 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/LenientCopyTool.class
│ -rw---- 2.0 fat 3019 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/ModuleMemberAccessor.class
│ --rw---- 2.0 fat 5283 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/ReflectionMemberAccessor.class
│ +-rw---- 2.0 fat 5267 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/ReflectionMemberAccessor.class
│ -rw---- 2.0 fat 2747 bl defN 80-Feb-01 00:00 org/mockito/internal/util/reflection/SuperTypesLastSorter.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/
│ -rw---- 2.0 fat 2584 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/AtLeast.class
│ -rw---- 2.0 fat 2914 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/AtMost.class
│ -rw---- 2.0 fat 2526 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/Calls.class
│ -rw---- 2.0 fat 300 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/DefaultRegisteredInvocations$1.class
│ -rw---- 2.0 fat 1563 bl defN 80-Feb-01 00:00 org/mockito/internal/verification/DefaultRegisteredInvocations$RemoveToString.class
│ @@ -649,8 +651,8 @@
│ -rw---- 2.0 fat 2331 bl defN 80-Feb-01 00:00 org/mockito/verification/After.class
│ -rw---- 2.0 fat 3065 bl defN 80-Feb-01 00:00 org/mockito/verification/Timeout.class
│ -rw---- 2.0 fat 421 bl defN 80-Feb-01 00:00 org/mockito/verification/VerificationAfterDelay.class
│ -rw---- 2.0 fat 383 bl defN 80-Feb-01 00:00 org/mockito/verification/VerificationEvent.class
│ -rw---- 2.0 fat 671 bl defN 80-Feb-01 00:00 org/mockito/verification/VerificationMode.class
│ -rw---- 2.0 fat 265 bl defN 80-Feb-01 00:00 org/mockito/verification/VerificationStrategy.class
│ -rw---- 2.0 fat 369 bl defN 80-Feb-01 00:00 org/mockito/verification/VerificationWithTimeout.class
│ -654 files, 1317605 bytes uncompressed, 536971 bytes compressed: 59.2%
│ +656 files, 1322161 bytes uncompressed, 538561 bytes compressed: 59.3%
├── zipnote «TEMP»/diffoscope_kl6wsgdo_440/tmpz6x2_38s.zip
│ @@ -600,14 +600,20 @@
│
│ Filename: org/mockito/internal/creation/bytebuddy/TypeCachingBytecodeGenerator.class
│ Comment:
│
│ Filename: org/mockito/internal/creation/bytebuddy/TypeSupport.class
│ Comment:
│
│ +Filename: org/mockito/internal/creation/bytebuddy/inject/
│ +Comment:
│ +
│ +Filename: org/mockito/internal/creation/bytebuddy/inject/MockMethodDispatcher.raw
│ +Comment:
│ +
│ Filename: org/mockito/internal/creation/instance/
│ Comment:
│
│ Filename: org/mockito/internal/creation/instance/ConstructorInstantiator.class
│ Comment:
│
│ Filename: org/mockito/internal/creation/instance/DefaultInstantiatorProvider.class
├── META-INF/MANIFEST.MF
│ @@ -22,130 +22,132 @@
│ kito,org.mockito.internal.creation.settings,org.mockito.internal.invo
│ cation,org.mockito.listeners,org.mockito.mock,org.mockito.stubbing",o
│ rg.mockito.internal.creation.bytebuddy;status=INTERNAL;mandatory:=sta
│ tus;version="4.4.0";uses:="net.bytebuddy.dynamic.loading,net.bytebudd
│ y.implementation.bind.annotation,org.mockito,org.mockito.creation.ins
│ tance,org.mockito.internal.creation.bytebuddy.inject,org.mockito.inte
│ rnal.util.concurrent,org.mockito.invocation,org.mockito.mock,org.mock
│ - ito.plugins",org.mockito.internal.creation.instance;status=INTERNAL;m
│ - andatory:=status;version="4.4.0";uses:="org.mockito.creation.instance
│ - ,org.mockito.mock,org.mockito.plugins",org.mockito.internal.creation.
│ - proxy;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mo
│ - ckito.invocation,org.mockito.mock,org.mockito.plugins",org.mockito.in
│ - ternal.creation.settings;status=INTERNAL;mandatory:=status;version="4
│ - .4.0";uses:="org.mockito.listeners,org.mockito.mock,org.mockito.stubb
│ - ing",org.mockito.internal.creation.util;status=INTERNAL;mandatory:=st
│ - atus;version="4.4.0",org.mockito.internal.debugging;status=INTERNAL;m
│ - andatory:=status;version="4.4.0";uses:="org.mockito.internal.exceptio
│ - ns.stacktrace,org.mockito.internal.invocation,org.mockito.invocation,
│ - org.mockito.listeners",org.mockito.internal.exceptions;status=INTERNA
│ - L;mandatory:=status;version="4.4.0";uses:="org.mockito.exceptions.bas
│ - e,org.mockito.exceptions.misusing,org.mockito.exceptions.verification
│ - ,org.mockito.internal.matchers,org.mockito.internal.reporting,org.moc
│ - kito.invocation,org.mockito.listeners,org.mockito.mock",org.mockito.i
│ - nternal.exceptions.stacktrace;status=INTERNAL;mandatory:=status;versi
│ - on="4.4.0";uses:="org.mockito.exceptions.stacktrace,org.mockito.plugi
│ - ns",org.mockito.internal.exceptions.util;status=INTERNAL;mandatory:=s
│ - tatus;version="4.4.0";uses:="org.mockito.internal.exceptions",org.moc
│ - kito.internal.framework;status=INTERNAL;mandatory:=status;version="4.
│ - 4.0";uses:="org.mockito,org.mockito.invocation,org.mockito.listeners,
│ - org.mockito.plugins,org.mockito.quality",org.mockito.internal.hamcres
│ - t;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.hamcre
│ - st,org.mockito",org.mockito.internal.handler;status=INTERNAL;mandator
│ - y:=status;version="4.4.0";uses:="org.mockito.invocation,org.mockito.l
│ - isteners,org.mockito.mock",org.mockito.internal.invocation;status=INT
│ - ERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito,org.mockit
│ - o.internal.exceptions,org.mockito.internal.invocation.mockref,org.moc
│ - kito.internal.progress,org.mockito.internal.verification.api,org.mock
│ - ito.invocation,org.mockito.mock",org.mockito.internal.invocation.find
│ - er;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mocki
│ - to.invocation,org.mockito.stubbing",org.mockito.internal.invocation.m
│ - ockref;status=INTERNAL;mandatory:=status;version="4.4.0",org.mockito.
│ - internal.junit;status=INTERNAL;mandatory:=status;version="4.4.0";uses
│ - :="org.junit.runner,org.junit.runner.notification,org.junit.runners.m
│ - odel,org.mockito.exceptions.base,org.mockito.internal.listeners,org.m
│ - ockito.invocation,org.mockito.junit,org.mockito.listeners,org.mockito
│ - .mock,org.mockito.plugins,org.mockito.quality",org.mockito.internal.l
│ - isteners;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org
│ - .mockito,org.mockito.internal.creation.settings,org.mockito.invocatio
│ - n,org.mockito.listeners,org.mockito.stubbing",org.mockito.internal.ma
│ - tchers;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.m
│ - ockito,org.mockito.invocation",org.mockito.internal.matchers.apacheco
│ - mmons;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mo
│ - ckito",org.mockito.internal.matchers.text;status=INTERNAL;mandatory:=
│ - status;version="4.4.0";uses:="org.mockito,org.mockito.internal.report
│ - ing",org.mockito.internal.progress;status=INTERNAL;mandatory:=status;
│ - version="4.4.0";uses:="org.mockito,org.mockito.internal.matchers,org.
│ - mockito.listeners,org.mockito.mock,org.mockito.stubbing,org.mockito.v
│ - erification",org.mockito.internal.reporting;status=INTERNAL;mandatory
│ - :=status;version="4.4.0";uses:="org.mockito,org.mockito.invocation",o
│ - rg.mockito.internal.runners;status=INTERNAL;mandatory:=status;version
│ - ="4.4.0";uses:="org.junit.runner,org.junit.runner.manipulation,org.ju
│ - nit.runner.notification,org.junit.runners.model,org.mockito.internal.
│ - junit,org.mockito.internal.util",org.mockito.internal.runners.util;st
│ - atus=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.junit.runn
│ - er.notification,org.mockito.internal.runners",org.mockito.internal.se
│ - ssion;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mo
│ - ckito,org.mockito.plugins,org.mockito.quality,org.mockito.session",or
│ - g.mockito.internal.stubbing;status=INTERNAL;mandatory:=status;version
│ - ="4.4.0";uses:="org.mockito.internal.invocation,org.mockito.invocatio
│ - n,org.mockito.mock,org.mockito.quality,org.mockito.stubbing",org.mock
│ - ito.internal.stubbing.answers;status=INTERNAL;mandatory:=status;versi
│ - on="4.4.0";uses:="org.mockito.internal.invocation,org.mockito.invocat
│ - ion,org.mockito.stubbing",org.mockito.internal.stubbing.defaultanswer
│ - s;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockit
│ - o.internal.util.reflection,org.mockito.invocation,org.mockito.stubbin
│ - g",org.mockito.internal.util;status=INTERNAL;mandatory:=status;versio
│ - n="4.4.0";uses:="org.mockito,org.mockito.internal.stubbing,org.mockit
│ - o.invocation,org.mockito.mock,org.mockito.plugins,org.mockito.stubbin
│ - g",org.mockito.internal.util.collections;status=INTERNAL;mandatory:=s
│ - tatus;version="4.4.0",org.mockito.internal.util.concurrent;status=INT
│ - ERNAL;mandatory:=status;version="4.4.0",org.mockito.internal.util.io;
│ + ito.plugins",org.mockito.internal.creation.bytebuddy.inject;status=IN
│ + TERNAL;mandatory:=status;version="4.4.0",org.mockito.internal.creatio
│ + n.instance;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="o
│ + rg.mockito.creation.instance,org.mockito.mock,org.mockito.plugins",or
│ + g.mockito.internal.creation.proxy;status=INTERNAL;mandatory:=status;v
│ + ersion="4.4.0";uses:="org.mockito.invocation,org.mockito.mock,org.moc
│ + kito.plugins",org.mockito.internal.creation.settings;status=INTERNAL;
│ + mandatory:=status;version="4.4.0";uses:="org.mockito.listeners,org.mo
│ + ckito.mock,org.mockito.stubbing",org.mockito.internal.creation.util;s
│ + tatus=INTERNAL;mandatory:=status;version="4.4.0",org.mockito.internal
│ + .debugging;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="o
│ + rg.mockito.internal.exceptions.stacktrace,org.mockito.internal.invoca
│ + tion,org.mockito.invocation,org.mockito.listeners",org.mockito.intern
│ + al.exceptions;status=INTERNAL;mandatory:=status;version="4.4.0";uses:
│ + ="org.mockito.exceptions.base,org.mockito.exceptions.misusing,org.moc
│ + kito.exceptions.verification,org.mockito.internal.matchers,org.mockit
│ + o.internal.reporting,org.mockito.invocation,org.mockito.listeners,org
│ + .mockito.mock",org.mockito.internal.exceptions.stacktrace;status=INTE
│ + RNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.exceptions.
│ + stacktrace,org.mockito.plugins",org.mockito.internal.exceptions.util;
│ + status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.
│ + internal.exceptions",org.mockito.internal.framework;status=INTERNAL;m
│ + andatory:=status;version="4.4.0";uses:="org.mockito,org.mockito.invoc
│ + ation,org.mockito.listeners,org.mockito.plugins,org.mockito.quality",
│ + org.mockito.internal.hamcrest;status=INTERNAL;mandatory:=status;versi
│ + on="4.4.0";uses:="org.hamcrest,org.mockito",org.mockito.internal.hand
│ + ler;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mock
│ + ito.invocation,org.mockito.listeners,org.mockito.mock",org.mockito.in
│ + ternal.invocation;status=INTERNAL;mandatory:=status;version="4.4.0";u
│ + ses:="org.mockito,org.mockito.internal.exceptions,org.mockito.interna
│ + l.invocation.mockref,org.mockito.internal.progress,org.mockito.intern
│ + al.verification.api,org.mockito.invocation,org.mockito.mock",org.mock
│ + ito.internal.invocation.finder;status=INTERNAL;mandatory:=status;vers
│ + ion="4.4.0";uses:="org.mockito.invocation,org.mockito.stubbing",org.m
│ + ockito.internal.invocation.mockref;status=INTERNAL;mandatory:=status;
│ + version="4.4.0",org.mockito.internal.junit;status=INTERNAL;mandatory:
│ + =status;version="4.4.0";uses:="org.junit.runner,org.junit.runner.noti
│ + fication,org.junit.runners.model,org.mockito.exceptions.base,org.mock
│ + ito.internal.listeners,org.mockito.invocation,org.mockito.junit,org.m
│ + ockito.listeners,org.mockito.mock,org.mockito.plugins,org.mockito.qua
│ + lity",org.mockito.internal.listeners;status=INTERNAL;mandatory:=statu
│ + s;version="4.4.0";uses:="org.mockito,org.mockito.internal.creation.se
│ + ttings,org.mockito.invocation,org.mockito.listeners,org.mockito.stubb
│ + ing",org.mockito.internal.matchers;status=INTERNAL;mandatory:=status;
│ + version="4.4.0";uses:="org.mockito,org.mockito.invocation",org.mockit
│ + o.internal.matchers.apachecommons;status=INTERNAL;mandatory:=status;v
│ + ersion="4.4.0";uses:="org.mockito",org.mockito.internal.matchers.text
│ + ;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito
│ + ,org.mockito.internal.reporting",org.mockito.internal.progress;status
│ + =INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito,org.mo
│ + ckito.internal.matchers,org.mockito.listeners,org.mockito.mock,org.mo
│ + ckito.stubbing,org.mockito.verification",org.mockito.internal.reporti
│ + ng;status=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mocki
│ + to,org.mockito.invocation",org.mockito.internal.runners;status=INTERN
│ + AL;mandatory:=status;version="4.4.0";uses:="org.junit.runner,org.juni
│ + t.runner.manipulation,org.junit.runner.notification,org.junit.runners
│ + .model,org.mockito.internal.junit,org.mockito.internal.util",org.mock
│ + ito.internal.runners.util;status=INTERNAL;mandatory:=status;version="
│ + 4.4.0";uses:="org.junit.runner.notification,org.mockito.internal.runn
│ + ers",org.mockito.internal.session;status=INTERNAL;mandatory:=status;v
│ + ersion="4.4.0";uses:="org.mockito,org.mockito.plugins,org.mockito.qua
│ + lity,org.mockito.session",org.mockito.internal.stubbing;status=INTERN
│ + AL;mandatory:=status;version="4.4.0";uses:="org.mockito.internal.invo
│ + cation,org.mockito.invocation,org.mockito.mock,org.mockito.quality,or
│ + g.mockito.stubbing",org.mockito.internal.stubbing.answers;status=INTE
│ + RNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.internal.in
│ + vocation,org.mockito.invocation,org.mockito.stubbing",org.mockito.int
│ + ernal.stubbing.defaultanswers;status=INTERNAL;mandatory:=status;versi
│ + on="4.4.0";uses:="org.mockito.internal.util.reflection,org.mockito.in
│ + vocation,org.mockito.stubbing",org.mockito.internal.util;status=INTER
│ + NAL;mandatory:=status;version="4.4.0";uses:="org.mockito,org.mockito.
│ + internal.stubbing,org.mockito.invocation,org.mockito.mock,org.mockito
│ + .plugins,org.mockito.stubbing",org.mockito.internal.util.collections;
│ status=INTERNAL;mandatory:=status;version="4.4.0",org.mockito.interna
│ - l.util.reflection;status=INTERNAL;mandatory:=status;version="4.4.0";u
│ - ses:="org.mockito.internal.util.collections,org.mockito.plugins",org.
│ - mockito.internal.verification;status=INTERNAL;mandatory:=status;versi
│ - on="4.4.0";uses:="org.mockito.internal,org.mockito.internal.invocatio
│ - n,org.mockito.internal.stubbing,org.mockito.internal.util,org.mockito
│ - .internal.verification.api,org.mockito.invocation,org.mockito.listene
│ - rs,org.mockito.verification",org.mockito.internal.verification.api;st
│ - atus=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.in
│ - vocation",org.mockito.internal.verification.argumentmatching;status=I
│ - NTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito",org.moc
│ - kito.internal.verification.checkers;status=INTERNAL;mandatory:=status
│ - ;version="4.4.0";uses:="org.mockito.internal.reporting,org.mockito.in
│ - ternal.verification.api,org.mockito.invocation",org.mockito;version="
│ - 4.4.0";uses:="org.mockito.exceptions.misusing,org.mockito.invocation,
│ - org.mockito.listeners,org.mockito.mock,org.mockito.plugins,org.mockit
│ - o.quality,org.mockito.session,org.mockito.stubbing,org.mockito.verifi
│ - cation",org.mockito.codegen;version="4.4.0",org.mockito.configuration
│ - ;version="4.4.0";uses:="org.mockito.stubbing",org.mockito.creation.in
│ - stance;version="4.4.0";uses:="org.mockito.exceptions.base",org.mockit
│ - o.exceptions.base;version="4.4.0",org.mockito.exceptions.misusing;ver
│ - sion="4.4.0";uses:="org.mockito.exceptions.base",org.mockito.exceptio
│ - ns.stacktrace;version="4.4.0",org.mockito.exceptions.verification;ver
│ - sion="4.4.0";uses:="org.mockito.exceptions.base",org.mockito.exceptio
│ - ns.verification.junit;version="4.4.0";uses:="junit.framework",org.moc
│ - kito.exceptions.verification.opentest4j;version="4.4.0";uses:="org.op
│ - entest4j",org.mockito.hamcrest;version="4.4.0";uses:="org.hamcrest",o
│ - rg.mockito.invocation;version="4.4.0";uses:="org.mockito,org.mockito.
│ - mock",org.mockito.junit;version="4.4.0";uses:="org.junit.rules,org.ju
│ - nit.runner,org.junit.runner.manipulation,org.junit.runner.notificatio
│ - n,org.mockito.exceptions.base,org.mockito.quality",org.mockito.listen
│ - ers;version="4.4.0";uses:="org.mockito.invocation,org.mockito.mock,or
│ - g.mockito.stubbing,org.mockito.verification",org.mockito.mock;version
│ - ="4.4.0";uses:="org.mockito,org.mockito.listeners,org.mockito.stubbin
│ - g",org.mockito.plugins;version="4.4.0";uses:="org.mockito,org.mockito
│ - .creation.instance,org.mockito.exceptions.stacktrace,org.mockito.invo
│ - cation,org.mockito.mock",org.mockito.quality;version="4.4.0",org.mock
│ - ito.session;version="4.4.0";uses:="org.mockito,org.mockito.exceptions
│ - .misusing,org.mockito.quality",org.mockito.stubbing;version="4.4.0";u
│ - ses:="org.mockito,org.mockito.invocation,org.mockito.quality",org.moc
│ - kito.verification;version="4.4.0";uses:="org.mockito.internal.verific
│ - ation,org.mockito.internal.verification.api"
│ + l.util.concurrent;status=INTERNAL;mandatory:=status;version="4.4.0",o
│ + rg.mockito.internal.util.io;status=INTERNAL;mandatory:=status;version
│ + ="4.4.0",org.mockito.internal.util.reflection;status=INTERNAL;mandato
│ + ry:=status;version="4.4.0";uses:="org.mockito.internal.util.collectio
│ + ns,org.mockito.plugins",org.mockito.internal.verification;status=INTE
│ + RNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.internal,or
│ + g.mockito.internal.invocation,org.mockito.internal.stubbing,org.mocki
│ + to.internal.util,org.mockito.internal.verification.api,org.mockito.in
│ + vocation,org.mockito.listeners,org.mockito.verification",org.mockito.
│ + internal.verification.api;status=INTERNAL;mandatory:=status;version="
│ + 4.4.0";uses:="org.mockito.invocation",org.mockito.internal.verificati
│ + on.argumentmatching;status=INTERNAL;mandatory:=status;version="4.4.0"
│ + ;uses:="org.mockito",org.mockito.internal.verification.checkers;statu
│ + s=INTERNAL;mandatory:=status;version="4.4.0";uses:="org.mockito.inter
│ + nal.reporting,org.mockito.internal.verification.api,org.mockito.invoc
│ + ation",org.mockito;version="4.4.0";uses:="org.mockito.exceptions.misu
│ + sing,org.mockito.invocation,org.mockito.listeners,org.mockito.mock,or
│ + g.mockito.plugins,org.mockito.quality,org.mockito.session,org.mockito
│ + .stubbing,org.mockito.verification",org.mockito.codegen;version="4.4.
│ + 0",org.mockito.configuration;version="4.4.0";uses:="org.mockito.stubb
│ + ing",org.mockito.creation.instance;version="4.4.0";uses:="org.mockito
│ + .exceptions.base",org.mockito.exceptions.base;version="4.4.0",org.moc
│ + kito.exceptions.misusing;version="4.4.0";uses:="org.mockito.exception
│ + s.base",org.mockito.exceptions.stacktrace;version="4.4.0",org.mockito
│ + .exceptions.verification;version="4.4.0";uses:="org.mockito.exception
│ + s.base",org.mockito.exceptions.verification.junit;version="4.4.0";use
│ + s:="junit.framework",org.mockito.exceptions.verification.opentest4j;v
│ + ersion="4.4.0";uses:="org.opentest4j",org.mockito.hamcrest;version="4
│ + .4.0";uses:="org.hamcrest",org.mockito.invocation;version="4.4.0";use
│ + s:="org.mockito,org.mockito.mock",org.mockito.junit;version="4.4.0";u
│ + ses:="org.junit.rules,org.junit.runner,org.junit.runner.manipulation,
│ + org.junit.runner.notification,org.mockito.exceptions.base,org.mockito
│ + .quality",org.mockito.listeners;version="4.4.0";uses:="org.mockito.in
│ + vocation,org.mockito.mock,org.mockito.stubbing,org.mockito.verificati
│ + on",org.mockito.mock;version="4.4.0";uses:="org.mockito,org.mockito.l
│ + isteners,org.mockito.stubbing",org.mockito.plugins;version="4.4.0";us
│ + es:="org.mockito,org.mockito.creation.instance,org.mockito.exceptions
│ + .stacktrace,org.mockito.invocation,org.mockito.mock",org.mockito.qual
│ + ity;version="4.4.0",org.mockito.session;version="4.4.0";uses:="org.mo
│ + ckito,org.mockito.exceptions.misusing,org.mockito.quality",org.mockit
│ + o.stubbing;version="4.4.0";uses:="org.mockito,org.mockito.invocation,
│ + org.mockito.quality",org.mockito.verification;version="4.4.0";uses:="
│ + org.mockito.internal.verification,org.mockito.internal.verification.a
│ + pi"
│ Import-Package: net.bytebuddy;version="[1.6.0,2.0)",net.bytebuddy.agen
│ t;version="[1.6.0,2.0)",net.bytebuddy.asm;version="[1.6.0,2.0)",net.b
│ ytebuddy.description;version="[1.6.0,2.0)",net.bytebuddy.description.
│ field;version="[1.6.0,2.0)",net.bytebuddy.description.method;version=
│ "[1.6.0,2.0)",net.bytebuddy.description.modifier;version="[1.6.0,2.0)
│ ",net.bytebuddy.description.type;version="[1.6.0,2.0)",net.bytebuddy.
│ dynamic;version="[1.6.0,2.0)",net.bytebuddy.dynamic.loading;version="
│ @@ -175,49 +177,50 @@
│ sion="[4.4,5)";status=INTERNAL,org.mockito.internal.configuration;ver
│ sion="[4.4,5)";status=INTERNAL,org.mockito.internal.configuration.inj
│ ection;version="[4.4,5)";status=INTERNAL,org.mockito.internal.configu
│ ration.injection.filter;version="[4.4,5)";status=INTERNAL,org.mockito
│ .internal.configuration.injection.scanner;version="[4.4,5)";status=IN
│ TERNAL,org.mockito.internal.configuration.plugins;version="[4.4,5)";s
│ tatus=INTERNAL,org.mockito.internal.creation;version="[4.4,5)";status
│ - =INTERNAL,org.mockito.internal.creation.bytebuddy.inject,org.mockito.
│ - internal.creation.instance;version="[4.4,5)";status=INTERNAL,org.mock
│ - ito.internal.creation.settings;version="[4.4,5)";status=INTERNAL,org.
│ - mockito.internal.debugging;version="[4.4,5)";status=INTERNAL,org.mock
│ - ito.internal.exceptions;version="[4.4,5)";status=INTERNAL,org.mockito
│ - .internal.exceptions.stacktrace;version="[4.4,5)";status=INTERNAL,org
│ - .mockito.internal.exceptions.util;version="[4.4,5)";status=INTERNAL,o
│ - rg.mockito.internal.framework;version="[4.4,5)";status=INTERNAL,org.m
│ - ockito.internal.hamcrest;version="[4.4,5)";status=INTERNAL,org.mockit
│ - o.internal.handler;version="[4.4,5)";status=INTERNAL,org.mockito.inte
│ - rnal.invocation;version="[4.4,5)";status=INTERNAL,org.mockito.interna
│ - l.invocation.finder;version="[4.4,5)";status=INTERNAL,org.mockito.int
│ - ernal.invocation.mockref;version="[4.4,5)";status=INTERNAL,org.mockit
│ - o.internal.junit;version="[4.4,5)";status=INTERNAL,org.mockito.intern
│ - al.listeners;version="[4.4,5)";status=INTERNAL,org.mockito.internal.m
│ - atchers;version="[4.4,5)";status=INTERNAL,org.mockito.internal.matche
│ - rs.apachecommons;version="[4.4,5)";status=INTERNAL,org.mockito.intern
│ - al.matchers.text;version="[4.4,5)";status=INTERNAL,org.mockito.intern
│ - al.progress;version="[4.4,5)";status=INTERNAL,org.mockito.internal.re
│ - porting;version="[4.4,5)";status=INTERNAL,org.mockito.internal.runner
│ - s;version="[4.4,5)";status=INTERNAL,org.mockito.internal.runners.util
│ - ;version="[4.4,5)";status=INTERNAL,org.mockito.internal.session;versi
│ - on="[4.4,5)";status=INTERNAL,org.mockito.internal.stubbing;version="[
│ - 4.4,5)";status=INTERNAL,org.mockito.internal.stubbing.answers;version
│ - ="[4.4,5)";status=INTERNAL,org.mockito.internal.stubbing.defaultanswe
│ - rs;version="[4.4,5)";status=INTERNAL,org.mockito.internal.util;versio
│ - n="[4.4,5)";status=INTERNAL,org.mockito.internal.util.collections;ver
│ - sion="[4.4,5)";status=INTERNAL,org.mockito.internal.util.concurrent;v
│ - ersion="[4.4,5)";status=INTERNAL,org.mockito.internal.util.io;version
│ - ="[4.4,5)";status=INTERNAL,org.mockito.internal.util.reflection;versi
│ - on="[4.4,5)";status=INTERNAL,org.mockito.internal.verification;versio
│ - n="[4.4,5)";status=INTERNAL,org.mockito.internal.verification.api;ver
│ - sion="[4.4,5)";status=INTERNAL,org.mockito.internal.verification.argu
│ - mentmatching;version="[4.4,5)";status=INTERNAL,org.mockito.internal.v
│ - erification.checkers;version="[4.4,5)";status=INTERNAL,org.mockito.in
│ - vocation;version="[4.4,5)",org.mockito.junit;version="[4.4,5)",org.mo
│ - ckito.listeners;version="[4.4,5)",org.mockito.mock;version="[4.4,5)",
│ - org.mockito.plugins;version="[4.4,5)",org.mockito.quality;version="[4
│ - .4,5)",org.mockito.session;version="[4.4,5)",org.mockito.stubbing;ver
│ - sion="[4.4,5)",org.mockito.verification;version="[4.4,5)"
│ + =INTERNAL,org.mockito.internal.creation.bytebuddy.inject;version="[4.
│ + 4,5)";status=INTERNAL,org.mockito.internal.creation.instance;version=
│ + "[4.4,5)";status=INTERNAL,org.mockito.internal.creation.settings;vers
│ + ion="[4.4,5)";status=INTERNAL,org.mockito.internal.debugging;version=
│ + "[4.4,5)";status=INTERNAL,org.mockito.internal.exceptions;version="[4
│ + .4,5)";status=INTERNAL,org.mockito.internal.exceptions.stacktrace;ver
│ + sion="[4.4,5)";status=INTERNAL,org.mockito.internal.exceptions.util;v
│ + ersion="[4.4,5)";status=INTERNAL,org.mockito.internal.framework;versi
│ + on="[4.4,5)";status=INTERNAL,org.mockito.internal.hamcrest;version="[
│ + 4.4,5)";status=INTERNAL,org.mockito.internal.handler;version="[4.4,5)
│ + ";status=INTERNAL,org.mockito.internal.invocation;version="[4.4,5)";s
│ + tatus=INTERNAL,org.mockito.internal.invocation.finder;version="[4.4,5
│ + )";status=INTERNAL,org.mockito.internal.invocation.mockref;version="[
│ + 4.4,5)";status=INTERNAL,org.mockito.internal.junit;version="[4.4,5)";
│ + status=INTERNAL,org.mockito.internal.listeners;version="[4.4,5)";stat
│ + us=INTERNAL,org.mockito.internal.matchers;version="[4.4,5)";status=IN
│ + TERNAL,org.mockito.internal.matchers.apachecommons;version="[4.4,5)";
│ + status=INTERNAL,org.mockito.internal.matchers.text;version="[4.4,5)";
│ + status=INTERNAL,org.mockito.internal.progress;version="[4.4,5)";statu
│ + s=INTERNAL,org.mockito.internal.reporting;version="[4.4,5)";status=IN
│ + TERNAL,org.mockito.internal.runners;version="[4.4,5)";status=INTERNAL
│ + ,org.mockito.internal.runners.util;version="[4.4,5)";status=INTERNAL,
│ + org.mockito.internal.session;version="[4.4,5)";status=INTERNAL,org.mo
│ + ckito.internal.stubbing;version="[4.4,5)";status=INTERNAL,org.mockito
│ + .internal.stubbing.answers;version="[4.4,5)";status=INTERNAL,org.mock
│ + ito.internal.stubbing.defaultanswers;version="[4.4,5)";status=INTERNA
│ + L,org.mockito.internal.util;version="[4.4,5)";status=INTERNAL,org.moc
│ + kito.internal.util.collections;version="[4.4,5)";status=INTERNAL,org.
│ + mockito.internal.util.concurrent;version="[4.4,5)";status=INTERNAL,or
│ + g.mockito.internal.util.io;version="[4.4,5)";status=INTERNAL,org.mock
│ + ito.internal.util.reflection;version="[4.4,5)";status=INTERNAL,org.mo
│ + ckito.internal.verification;version="[4.4,5)";status=INTERNAL,org.moc
│ + kito.internal.verification.api;version="[4.4,5)";status=INTERNAL,org.
│ + mockito.internal.verification.argumentmatching;version="[4.4,5)";stat
│ + us=INTERNAL,org.mockito.internal.verification.checkers;version="[4.4,
│ + 5)";status=INTERNAL,org.mockito.invocation;version="[4.4,5)",org.mock
│ + ito.junit;version="[4.4,5)",org.mockito.listeners;version="[4.4,5)",o
│ + rg.mockito.mock;version="[4.4,5)",org.mockito.plugins;version="[4.4,5
│ + )",org.mockito.quality;version="[4.4,5)",org.mockito.session;version=
│ + "[4.4,5)",org.mockito.stubbing;version="[4.4,5)",org.mockito.verifica