forked from msgpack/msgpack-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestMessagePack02.java
More file actions
3244 lines (2790 loc) · 125 KB
/
TestMessagePack02.java
File metadata and controls
3244 lines (2790 loc) · 125 KB
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
package org.msgpack;
import static org.junit.Assert.assertEquals;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import org.junit.Test;
import org.msgpack.testclasses.EnumTypeFieldsClass;
import org.msgpack.testclasses.EnumTypeFieldsClassNotNullable;
import org.msgpack.testclasses.IndexedFieldsBeanClass;
import org.msgpack.testclasses.IndexedFieldsBeanClassNotNullable;
import org.msgpack.testclasses.InheritanceClass;
import org.msgpack.testclasses.InheritanceClassNotNullable;
import org.msgpack.testclasses.ListTypeFieldsClass;
import org.msgpack.testclasses.ListTypeFieldsClassNotNullable;
import org.msgpack.testclasses.MapTypeFieldsClass;
import org.msgpack.testclasses.MapTypeFieldsClassNotNullable;
import org.msgpack.testclasses.MessagePackableTypeFieldsClass;
import org.msgpack.testclasses.MessagePackableTypeFieldsClassNotNullable;
import org.msgpack.testclasses.ModifiersFieldsClass;
import org.msgpack.testclasses.ModifiersFieldsClassNotNullable;
import org.msgpack.testclasses.PrimitiveTypeFieldsClass;
import org.msgpack.testclasses.PrimitiveTypeFieldsClassNotNullable;
import org.msgpack.testclasses.ReferenceCycleTypeFieldsClass;
import org.msgpack.testclasses.ReferenceCycleTypeFieldsClassNotNullable;
import org.msgpack.testclasses.ReferenceTypeFieldsClass;
import org.msgpack.testclasses.ReferenceTypeFieldsClassNotNullable;
import org.msgpack.testclasses.UserDefinedTypeFieldsClass;
import org.msgpack.testclasses.UserDefinedTypeFieldsClassNotNullable;
import org.msgpack.type.Value;
public class TestMessagePack02 {
@Test
public void testPrimitiveTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassBufferPackBufferUnpack().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassBufferPackConvert() throws Exception {
new TestPrimitiveTypeFieldsClassBufferPackConvert().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassBufferPackUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassBufferPackUnpack().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassPackBufferUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassPackBufferUnpack().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassPackConvert() throws Exception {
new TestPrimitiveTypeFieldsClassPackConvert().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassPackUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassPackUnpack().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassUnconvertConvert() throws Exception {
new TestPrimitiveTypeFieldsClassUnconvertConvert().testPrimitiveTypeFieldsClass();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullableBufferPackBufferUnpack().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullableBufferPackConvert().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullableBufferPackUnpack().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullablePackBufferUnpack().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullablePackConvert().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullablePackUnpack().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testPrimitiveTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestPrimitiveTypeFieldsClassNotNullableUnconvertConvert().testPrimitiveTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestReferenceTypeFieldsClassBufferPackBufferUnpack().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassBufferPackConvert() throws Exception {
new TestReferenceTypeFieldsClassBufferPackConvert().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassBufferPackUnpack() throws Exception {
new TestReferenceTypeFieldsClassBufferPackUnpack().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassPackBufferUnpack() throws Exception {
new TestReferenceTypeFieldsClassPackBufferUnpack().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassPackConvert() throws Exception {
new TestReferenceTypeFieldsClassPackConvert().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassPackUnpack() throws Exception {
new TestReferenceTypeFieldsClassPackUnpack().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassUnconvertConvert() throws Exception {
new TestReferenceTypeFieldsClassUnconvertConvert().testReferenceTypeFieldsClass();
}
@Test
public void testReferenceTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestReferenceTypeFieldsClassNotNullableBufferPackBufferUnpack().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestReferenceTypeFieldsClassNotNullableBufferPackConvert().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestReferenceTypeFieldsClassNotNullableBufferPackUnpack().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestReferenceTypeFieldsClassNotNullablePackBufferUnpack().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestReferenceTypeFieldsClassNotNullablePackConvert().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestReferenceTypeFieldsClassNotNullablePackUnpack().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testReferenceTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestReferenceTypeFieldsClassNotNullableUnconvertConvert().testReferenceTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestListTypeFieldsClassBufferPackBufferUnpack().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassBufferPackConvert() throws Exception {
new TestListTypeFieldsClassBufferPackConvert().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassBufferPackUnpack() throws Exception {
new TestListTypeFieldsClassBufferPackUnpack().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassPackBufferUnpack() throws Exception {
new TestListTypeFieldsClassPackBufferUnpack().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassPackConvert() throws Exception {
new TestListTypeFieldsClassPackConvert().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassPackUnpack() throws Exception {
new TestListTypeFieldsClassPackUnpack().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassUnconvertConvert() throws Exception {
new TestListTypeFieldsClassUnconvertConvert().testListTypeFieldsClass();
}
@Test
public void testListTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestListTypeFieldsClassNotNullableBufferPackBufferUnpack().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestListTypeFieldsClassNotNullableBufferPackConvert().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestListTypeFieldsClassNotNullableBufferPackUnpack().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestListTypeFieldsClassNotNullablePackBufferUnpack().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestListTypeFieldsClassNotNullablePackConvert().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestListTypeFieldsClassNotNullablePackUnpack().testListTypeFieldsClassNotNullable();
}
@Test
public void testListTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestListTypeFieldsClassNotNullableUnconvertConvert().testListTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestMapTypeFieldsClassBufferPackBufferUnpack().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassBufferPackConvert() throws Exception {
new TestMapTypeFieldsClassBufferPackConvert().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassBufferPackUnpack() throws Exception {
new TestMapTypeFieldsClassBufferPackUnpack().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassPackBufferUnpack() throws Exception {
new TestMapTypeFieldsClassPackBufferUnpack().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassPackConvert() throws Exception {
new TestMapTypeFieldsClassPackConvert().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassPackUnpack() throws Exception {
new TestMapTypeFieldsClassPackUnpack().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassUnconvertConvert() throws Exception {
new TestMapTypeFieldsClassUnconvertConvert().testMapTypeFieldsClass();
}
@Test
public void testMapTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestMapTypeFieldsClassNotNullableBufferPackBufferUnpack().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestMapTypeFieldsClassNotNullableBufferPackConvert().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestMapTypeFieldsClassNotNullableBufferPackUnpack().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestMapTypeFieldsClassNotNullablePackBufferUnpack().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestMapTypeFieldsClassNotNullablePackConvert().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestMapTypeFieldsClassNotNullablePackUnpack().testMapTypeFieldsClassNotNullable();
}
@Test
public void testMapTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestMapTypeFieldsClassNotNullableUnconvertConvert().testMapTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestEnumTypeFieldsClassBufferPackBufferUnpack().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassBufferPackConvert() throws Exception {
new TestEnumTypeFieldsClassBufferPackConvert().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassBufferPackUnpack() throws Exception {
new TestEnumTypeFieldsClassBufferPackUnpack().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassPackBufferUnpack() throws Exception {
new TestEnumTypeFieldsClassPackBufferUnpack().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassPackConvert() throws Exception {
new TestEnumTypeFieldsClassPackConvert().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassPackUnpack() throws Exception {
new TestEnumTypeFieldsClassPackUnpack().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassUnconvertConvert() throws Exception {
new TestEnumTypeFieldsClassUnconvertConvert().testEnumTypeFieldsClass();
}
@Test
public void testEnumTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestEnumTypeFieldsClassNotNullableBufferPackBufferUnpack().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestEnumTypeFieldsClassNotNullableBufferPackConvert().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestEnumTypeFieldsClassNotNullableBufferPackUnpack().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestEnumTypeFieldsClassNotNullablePackBufferUnpack().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestEnumTypeFieldsClassNotNullablePackConvert().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestEnumTypeFieldsClassNotNullablePackUnpack().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testEnumTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestEnumTypeFieldsClassNotNullableUnconvertConvert().testEnumTypeFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassBufferPackBufferUnpack() throws Exception {
new TestModifiersFieldsClassBufferPackBufferUnpack().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassBufferPackConvert() throws Exception {
new TestModifiersFieldsClassBufferPackConvert().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassBufferPackUnpack() throws Exception {
new TestModifiersFieldsClassBufferPackUnpack().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassPackBufferUnpack() throws Exception {
new TestModifiersFieldsClassPackBufferUnpack().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassPackConvert() throws Exception {
new TestModifiersFieldsClassPackConvert().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassPackUnpack() throws Exception {
new TestModifiersFieldsClassPackUnpack().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassUnconvertConvert() throws Exception {
new TestModifiersFieldsClassUnconvertConvert().testModifiersFieldsClass();
}
@Test
public void testModifiersFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestModifiersFieldsClassNotNullableBufferPackBufferUnpack().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestModifiersFieldsClassNotNullableBufferPackConvert().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestModifiersFieldsClassNotNullableBufferPackUnpack().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestModifiersFieldsClassNotNullablePackBufferUnpack().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullablePackConvert() throws Exception {
new TestModifiersFieldsClassNotNullablePackConvert().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullablePackUnpack() throws Exception {
new TestModifiersFieldsClassNotNullablePackUnpack().testModifiersFieldsClassNotNullable();
}
@Test
public void testModifiersFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestModifiersFieldsClassNotNullableUnconvertConvert().testModifiersFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassBufferPackBufferUnpack().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassBufferPackConvert() throws Exception {
new TestUserDefinedTypeFieldsClassBufferPackConvert().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassBufferPackUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassBufferPackUnpack().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassPackBufferUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassPackBufferUnpack().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassPackConvert() throws Exception {
new TestUserDefinedTypeFieldsClassPackConvert().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassPackUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassPackUnpack().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassUnconvertConvert() throws Exception {
new TestUserDefinedTypeFieldsClassUnconvertConvert().testUserDefinedTypeFieldsClass();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullableBufferPackBufferUnpack().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullableBufferPackConvert().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullableBufferPackUnpack().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullablePackBufferUnpack().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullablePackConvert().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullablePackUnpack().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testUserDefinedTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestUserDefinedTypeFieldsClassNotNullableUnconvertConvert().testUserDefinedTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassBufferPackBufferUnpack().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassBufferPackConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassBufferPackConvert().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassBufferPackUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassBufferPackUnpack().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassPackBufferUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassPackBufferUnpack().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassPackConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassPackConvert().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassPackUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassPackUnpack().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassUnconvertConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassUnconvertConvert().testReferenceCycleTypeFieldsClass();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullableBufferPackBufferUnpack().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullableBufferPackConvert().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullableBufferPackUnpack().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullablePackBufferUnpack().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullablePackConvert().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullablePackUnpack().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testReferenceCycleTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestReferenceCycleTypeFieldsClassNotNullableUnconvertConvert().testReferenceCycleTypeFieldsClassNotNullable();
}
@Test
public void testInheritanceClassBufferPackBufferUnpack() throws Exception {
new TestInheritanceClassBufferPackBufferUnpack().testInheritanceClass();
}
@Test
public void testInheritanceClassBufferPackConvert() throws Exception {
new TestInheritanceClassBufferPackConvert().testInheritanceClass();
}
@Test
public void testInheritanceClassBufferPackUnpack() throws Exception {
new TestInheritanceClassBufferPackUnpack().testInheritanceClass();
}
@Test
public void testInheritanceClassPackBufferUnpack() throws Exception {
new TestInheritanceClassPackBufferUnpack().testInheritanceClass();
}
@Test
public void testInheritanceClassPackConvert() throws Exception {
new TestInheritanceClassPackConvert().testInheritanceClass();
}
@Test
public void testInheritanceClassPackUnpack() throws Exception {
new TestInheritanceClassPackUnpack().testInheritanceClass();
}
@Test
public void testInheritanceClassUnconvertConvert() throws Exception {
new TestInheritanceClassUnconvertConvert().testInheritanceClass();
}
@Test
public void testInheritanceClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestInheritanceClassNotNullableBufferPackBufferUnpack().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullableBufferPackConvert() throws Exception {
new TestInheritanceClassNotNullableBufferPackConvert().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullableBufferPackUnpack() throws Exception {
new TestInheritanceClassNotNullableBufferPackUnpack().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullablePackBufferUnpack() throws Exception {
new TestInheritanceClassNotNullablePackBufferUnpack().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullablePackConvert() throws Exception {
new TestInheritanceClassNotNullablePackConvert().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullablePackUnpack() throws Exception {
new TestInheritanceClassNotNullablePackUnpack().testInheritanceClassNotNullable();
}
@Test
public void testInheritanceClassNotNullableUnconvertConvert() throws Exception {
new TestInheritanceClassNotNullableUnconvertConvert().testInheritanceClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassBufferPackBufferUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassBufferPackBufferUnpack().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassBufferPackConvert() throws Exception {
new TestMessagePackableTypeFieldsClassBufferPackConvert().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassBufferPackUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassBufferPackUnpack().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassPackBufferUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassPackBufferUnpack().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassPackConvert() throws Exception {
new TestMessagePackableTypeFieldsClassPackConvert().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassPackUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassPackUnpack().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassUnconvertConvert() throws Exception {
new TestMessagePackableTypeFieldsClassUnconvertConvert().testMessagePackableTypeFieldsClass();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullableBufferPackBufferUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullableBufferPackBufferUnpack().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullableBufferPackConvert() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullableBufferPackConvert().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullableBufferPackUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullableBufferPackUnpack().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullablePackBufferUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullablePackBufferUnpack().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullablePackConvert() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullablePackConvert().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullablePackUnpack() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullablePackUnpack().testMessagePackableTypeFieldsClassNotNullable();
}
@Test
public void testMessagePackableTypeFieldsClassNotNullableUnconvertConvert() throws Exception {
new TestMessagePackableTypeFieldsClassNotNullableUnconvertConvert().testMessagePackableTypeFieldsClassNotNullable();
}
public static class TestPrimitiveTypeFieldsClassBufferPackBufferUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
PrimitiveTypeFieldsClass ret = msgpack.read(bytes, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassBufferPackConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
Value value = msgpack.read(bytes);
PrimitiveTypeFieldsClass ret = msgpack.convert(value, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassBufferPackUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
ByteArrayInputStream in = new ByteArrayInputStream(bytes);
PrimitiveTypeFieldsClass ret = msgpack.read(in, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassPackBufferUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
byte[] bytes = out.toByteArray();
PrimitiveTypeFieldsClass ret = msgpack.read(bytes, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassPackConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
byte[] bytes = out.toByteArray();
Value value = msgpack.read(bytes);
PrimitiveTypeFieldsClass ret = msgpack.convert(value, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassPackUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
PrimitiveTypeFieldsClass ret = msgpack.read(in, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassUnconvertConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClass() throws Exception {
super.testPrimitiveTypeFieldsClass();
}
@Override
public void testPrimitiveTypeFieldsClass(PrimitiveTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
Value value = msgpack.unconvert(v);
PrimitiveTypeFieldsClass ret = msgpack.convert(value, PrimitiveTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullableBufferPackBufferUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
PrimitiveTypeFieldsClassNotNullable ret = msgpack.read(bytes, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullableBufferPackConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
Value value = msgpack.read(bytes);
PrimitiveTypeFieldsClassNotNullable ret = msgpack.convert(value, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullableBufferPackUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
ByteArrayInputStream in = new ByteArrayInputStream(bytes);
PrimitiveTypeFieldsClassNotNullable ret = msgpack.read(in, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullablePackBufferUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
byte[] bytes = out.toByteArray();
PrimitiveTypeFieldsClassNotNullable ret = msgpack.read(bytes, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullablePackConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
byte[] bytes = out.toByteArray();
Value value = msgpack.read(bytes);
PrimitiveTypeFieldsClassNotNullable ret = msgpack.convert(value, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullablePackUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
ByteArrayOutputStream out = new ByteArrayOutputStream();
msgpack.write(out, v);
ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray());
PrimitiveTypeFieldsClassNotNullable ret = msgpack.read(in, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestPrimitiveTypeFieldsClassNotNullableUnconvertConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testPrimitiveTypeFieldsClassNotNullable() throws Exception {
super.testPrimitiveTypeFieldsClassNotNullable();
}
@Override
public void testPrimitiveTypeFieldsClassNotNullable(PrimitiveTypeFieldsClassNotNullable v) throws Exception {
MessagePack msgpack = new MessagePack();
Value value = msgpack.unconvert(v);
PrimitiveTypeFieldsClassNotNullable ret = msgpack.convert(value, PrimitiveTypeFieldsClassNotNullable.class);
assertEquals(v, ret);
}
}
public static class TestReferenceTypeFieldsClassBufferPackBufferUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testReferenceTypeFieldsClass() throws Exception {
super.testReferenceTypeFieldsClass();
}
@Override
public void testReferenceTypeFieldsClass(ReferenceTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
ReferenceTypeFieldsClass ret = msgpack.read(bytes, ReferenceTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestReferenceTypeFieldsClassBufferPackConvert extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testReferenceTypeFieldsClass() throws Exception {
super.testReferenceTypeFieldsClass();
}
@Override
public void testReferenceTypeFieldsClass(ReferenceTypeFieldsClass v) throws Exception {
MessagePack msgpack = new MessagePack();
byte[] bytes = msgpack.write(v);
Value value = msgpack.read(bytes);
ReferenceTypeFieldsClass ret = msgpack.convert(value, ReferenceTypeFieldsClass.class);
assertEquals(v, ret);
}
}
public static class TestReferenceTypeFieldsClassBufferPackUnpack extends org.msgpack.template.builder.TestSet {
@Test @Override
public void testReferenceTypeFieldsClass() throws Exception {
super.testReferenceTypeFieldsClass();
}