-
Notifications
You must be signed in to change notification settings - Fork 0
/
unicoder.py.tests.py
executable file
·1523 lines (1508 loc) · 87.7 KB
/
unicoder.py.tests.py
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
#! /usr/bin/python3
""" testing the unicoder.py functions """
import sys, os
import unittest
import logging
from fnmatch import fnmatchcase as fnmatch
try:
from . import unicoder # mypy
except ImportError:
sys.path.insert(0, ".")
import unicoder # type: ignore[no-redef]
logg = logging.getLogger("TEST")
base_abcdefghijklmnopqrstuvwxyz = ":abcdefghijklmnopqrstuvwxyz"
base_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":ABCDEFGHIJKLMNOPQRSTUVWXYZ"
mono_abcdefghijklmnopqrstuvwxyz = ":𝚊𝚋𝚌𝚍𝚎𝚏𝚐𝚑𝚒𝚓𝚔𝚕𝚖𝚗𝚘𝚙𝚚𝚛𝚜𝚝𝚞𝚟𝚠𝚡𝚢𝚣"
mono_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":𝙰𝙱𝙲𝙳𝙴𝙵𝙶𝙷𝙸𝙹𝙺𝙻𝙼𝙽𝙾𝙿𝚀𝚁𝚂𝚃𝚄𝚅𝚆𝚇𝚈𝚉"
sans_abcdefghijklmnopqrstuvwxyz = ":𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓"
sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":𝖠𝖡𝖢𝖣𝖤𝖥𝖦𝖧𝖨𝖩𝖪𝖫𝖬𝖭𝖮𝖯𝖰𝖱𝖲𝖳𝖴𝖵𝖶𝖷𝖸𝖹"
base_0123456789 = ":0123456789"
mono_0123456789 = ":𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿"
sans_0123456789 = ":𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫"
bold_sans_abcdefghijklmnopqrstuvwxyz = ":𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇"
bold_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭"
bold_sans_0123456789 = ":𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵"
ital_sans_abcdefghijklmnopqrstuvwxyz = ":𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻"
ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡"
ital_sans_0123456789 = ":𝟢𝟣𝟤𝟥𝟦𝟧𝟨𝟩𝟪𝟫" # aka sans
bold_ital_sans_abcdefghijklmnopqrstuvwxyz = ":𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯"
bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ = ":𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕"
bold_ital_sans_0123456789 = ":𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵" # aka bold_sans
class UnicoderTest(unittest.TestCase):
def test_001_opt_scan(self) -> None:
opt = unicoder.scan(["-v"])
self.assertEqual(opt.verbose, 1)
def test_002_opt_scan(self) -> None:
opt = unicoder.scan(["-vv"])
self.assertEqual(opt.verbose, 2)
def test_003_opt_scan(self) -> None:
opt = unicoder.scan(["-v", "-vv"])
self.assertEqual(opt.verbose, 3)
def test_005_opt_scan(self) -> None:
opt = unicoder.scan(["--verbose"])
self.assertEqual(opt.verbose, 1)
def test_006_opt_scan(self) -> None:
opt = unicoder.scan(["--verbose", "--verbose"])
self.assertEqual(opt.verbose, 2)
def test_007_opt_scan(self) -> None:
opt = unicoder.scan(["--verbose", "--verbose", "-vv"])
self.assertEqual(opt.verbose, 4)
def test_008_opt_scan(self) -> None:
opt = unicoder.scan(["--verbose", "-vv", "--verbose"])
self.assertEqual(opt.verbose, 4)
def test_009_opt_scan(self) -> None:
opt = unicoder.scan(["-vv", "--verbose", "--verbose"])
self.assertEqual(opt.verbose, 4)
def test_011_opt_scan(self) -> None:
opt = unicoder.scan(["-h"])
self.assertEqual(opt.helpinfo, 1)
def test_012_opt_scan(self) -> None:
opt = unicoder.scan(["-hh"])
self.assertEqual(opt.helpinfo, 2)
def test_013_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help"])
self.assertEqual(opt.helpinfo, 3)
def test_014_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "arg1"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg1")
self.assertEqual(opt.text, "")
def test_015_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "arg1", "arg2"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg1")
self.assertEqual(opt.text, "arg2")
def test_016_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "arg1", "arg2", "--arg3"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg1")
self.assertEqual(opt.text, "arg2 --arg3")
def test_017_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "arg1", "--arg2", "arg3"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg1")
self.assertEqual(opt.text, "--arg2 arg3")
def test_018_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "--arg1", "arg2", "arg3"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg2")
self.assertEqual(opt.text, "arg3")
def test_019_opt_scan(self) -> None:
opt = unicoder.scan(["-hh", "--help", "-&", "arg2", "arg3"])
self.assertEqual(opt.helpinfo, 3)
self.assertEqual(opt.cmd, "arg2")
self.assertEqual(opt.text, "arg3")
def test_051_helpinfo(self) -> None:
text = unicoder.helpinfo()
self.assertIn("futa", text)
self.assertIn("italboldgreek", text)
#
def test_110_bold_base(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_111_bold_base(self) -> None:
uni = unicoder.convert("fat", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳")
def test_112_bold_base(self) -> None:
uni = unicoder.convert("bold", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳")
def test_113_bold_base(self) -> None:
uni = unicoder.convert("fat", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙")
def test_114_bold_base(self) -> None:
uni = unicoder.convert("bold", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙")
def test_115_bold_base(self) -> None:
uni = unicoder.bold(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳")
def test_116_bold_base(self) -> None:
uni = unicoder.bold(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳")
def test_117_bold_base(self) -> None:
uni = unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙")
def test_118_bold_base(self) -> None:
uni = unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙")
def test_120_ital_base(self) -> None:
uni = unicoder.convert("fix", ":abcdefg-ijklmnopqrstuvwxyz")
self.assertEqual(uni, ":abcdefg-ijklmnopqrstuvwxyz")
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":abcdefghijklmnopqrstuvwxyz")
def test_121_ital_base(self) -> None:
uni = unicoder.convert("slant", ":abcdefg-ijklmnopqrstuvwxyz")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔-𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
uni = unicoder.convert("slant", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
def test_122_ital_base(self) -> None:
uni = unicoder.convert("ital", ":abcdefg-ijklmnopqrstuvwxyz")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔-𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
uni = unicoder.convert("ital", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
def test_123_ital_base(self) -> None:
uni = unicoder.convert("slant", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍")
def test_124_ital_base(self) -> None:
uni = unicoder.convert("ital", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍")
def test_125_ital_base(self) -> None:
uni = unicoder.ital(":abcdefg-ijklmnopqrstuvwxyz")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔-𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
uni = unicoder.ital(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
def test_126_ital_base(self) -> None:
uni = unicoder.ital(":abcdefg-ijklmnopqrstuvwxyz")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔-𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
uni = unicoder.ital(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧")
def test_127_ital_base(self) -> None:
uni = unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍")
def test_128_ital_base(self) -> None:
uni = unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍")
def test_130_bold_ital_base(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_131_ital_bold_base(self) -> None:
uni = unicoder.convert("fatslant", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_132_ital_bold_base(self) -> None:
uni = unicoder.convert("italbold", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_133_ital_bold_base(self) -> None:
uni = unicoder.convert("fatslant", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_134_ital_bold_base(self) -> None:
uni = unicoder.convert("italbold", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_136_ital_bold_base(self) -> None:
uni = unicoder.ital(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_137_ital_bold_base(self) -> None:
uni = unicoder.ital(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_138_ital_bold_base(self) -> None:
uni = unicoder.ital(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_139_ital_bold_base(self) -> None:
uni = unicoder.ital(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_140_bold_ital_base(self) -> None:
uni = unicoder.bold(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_141_bold_ital_base(self) -> None:
uni = unicoder.bold(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛")
def test_142_bold_ital_base(self) -> None:
uni = unicoder.bold(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_143_bold_ital_base(self) -> None:
uni = unicoder.bold(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁")
def test_150_bold_numm(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_151_bold_numm(self) -> None:
uni = unicoder.convert("fat", base_0123456789)
self.assertEqual(uni, ":𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗")
def test_152_bold_numm(self) -> None:
uni = unicoder.convert("bold", base_0123456789)
self.assertEqual(uni, ":𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗")
def test_155_bold_numm(self) -> None:
uni = unicoder.bold(base_0123456789)
self.assertEqual(uni, ":𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗")
def test_156_bold_numm(self) -> None:
uni = unicoder.bold(base_0123456789)
self.assertEqual(uni, ":𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗")
def test_160_ital_numm(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_161_ital_numm(self) -> None:
uni = unicoder.convert("slant", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_162_ital_numm(self) -> None:
uni = unicoder.convert("ital", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_170_bold_base_sz(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":abcxyzABCXYZ0123456789ß")
def test_171_bold_base_sz(self) -> None:
uni = unicoder.convert("fat", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝐚𝐛𝐜𝐱𝐲𝐳𝐀𝐁𝐂𝐗𝐘𝐙𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗𝛃")
def test_172_bold_base_sz(self) -> None:
uni = unicoder.convert("bold", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝐚𝐛𝐜𝐱𝐲𝐳𝐀𝐁𝐂𝐗𝐘𝐙𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗𝛃")
def test_180_ital_base_sz(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":abcxyzABCXYZ0123456789ß")
def test_181_ital_base_sz(self) -> None:
uni = unicoder.convert("slant", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑥𝑦𝑧𝐴𝐵𝐶𝑋𝑌𝑍0123456789𝛽")
def test_182_ital_base_sz(self) -> None:
uni = unicoder.convert("ital", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝑎𝑏𝑐𝑥𝑦𝑧𝐴𝐵𝐶𝑋𝑌𝑍0123456789𝛽")
def test_190_bold_ital_base_sz(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":abcxyzABCXYZ0123456789ß")
def test_191_bold_ital_base_sz(self) -> None:
uni = unicoder.convert("fatslant", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝒂𝒃𝒄𝒙𝒚𝒛𝑨𝑩𝑪𝑿𝒀𝒁𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗𝜷")
def test_192_bold_ital_base_sz(self) -> None:
uni = unicoder.convert("italbold", ":abcxyzABCXYZ0123456789ß")
self.assertEqual(uni, ":𝒂𝒃𝒄𝒙𝒚𝒛𝑨𝑩𝑪𝑿𝒀𝒁𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗𝜷")
#
def test_200_norm_double(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABCXYZ")
self.assertEqual(uni, ":abcxyzABCXYZ")
def test_201_norm_double(self) -> None:
uni = unicoder.convert("double", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫")
def test_202_norm_double(self) -> None:
uni = unicoder.convert("wide", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫")
def test_203_norm_double(self) -> None:
uni = unicoder.convert("double", ":AB-DEFG-IJKLM-O---STUVWXY-")
self.assertEqual(uni, ":𝔸𝔹-𝔻𝔼𝔽𝔾-𝕀𝕁𝕂𝕃𝕄-𝕆---𝕊𝕋𝕌𝕍𝕎𝕏𝕐-")
uni = unicoder.convert("double", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔸𝔹ℂ𝔻𝔼𝔽𝔾ℍ𝕀𝕁𝕂𝕃𝕄ℕ𝕆ℙℚℝ𝕊𝕋𝕌𝕍𝕎𝕏𝕐ℤ")
def test_204_norm_double(self) -> None:
uni = unicoder.convert("wide", ":AB-DEFG-IJKLM-O---STUVWXY-")
self.assertEqual(uni, ":𝔸𝔹-𝔻𝔼𝔽𝔾-𝕀𝕁𝕂𝕃𝕄-𝕆---𝕊𝕋𝕌𝕍𝕎𝕏𝕐-")
uni = unicoder.convert("wide", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔸𝔹ℂ𝔻𝔼𝔽𝔾ℍ𝕀𝕁𝕂𝕃𝕄ℕ𝕆ℙℚℝ𝕊𝕋𝕌𝕍𝕎𝕏𝕐ℤ")
def test_205_norm_double(self) -> None:
uni = unicoder.doubled(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫")
def test_206_norm_double(self) -> None:
uni = unicoder.doubled(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫")
def test_207_norm_double(self) -> None:
uni = unicoder.doubled(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔸𝔹ℂ𝔻𝔼𝔽𝔾ℍ𝕀𝕁𝕂𝕃𝕄ℕ𝕆ℙℚℝ𝕊𝕋𝕌𝕍𝕎𝕏𝕐ℤ")
def test_208_norm_double(self) -> None:
uni = unicoder.doubled(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔸𝔹ℂ𝔻𝔼𝔽𝔾ℍ𝕀𝕁𝕂𝕃𝕄ℕ𝕆ℙℚℝ𝕊𝕋𝕌𝕍𝕎𝕏𝕐ℤ")
def test_210_bold_double(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABXY")
self.assertEqual(uni, ":abcxyzABXY")
def test_211_bold_double(self) -> None:
uni = unicoder.convert("fatdouble", ":abcxyzABXY")
self.assertEqual(uni, ":𝕒𝕓𝕔𝕩𝕪𝕫𝔸𝔹𝕏𝕐")
def test_212_bold_double(self) -> None:
uni = unicoder.convert("boldwide", ":abcxyzABXY")
self.assertEqual(uni, ":𝕒𝕓𝕔𝕩𝕪𝕫𝔸𝔹𝕏𝕐")
def test_215_bold_double(self) -> None:
uni = unicoder.bold(unicoder.doubled(":abcxyzABXY"))
self.assertEqual(uni, ":𝕒𝕓𝕔𝕩𝕪𝕫𝔸𝔹𝕏𝕐")
def test_216_bold_double(self) -> None:
uni = unicoder.bold(unicoder.doubled(":abcxyzABXY"))
self.assertEqual(uni, ":𝕒𝕓𝕔𝕩𝕪𝕫𝔸𝔹𝕏𝕐")
def test_240_numm_double(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_241_numm_double(self) -> None:
uni = unicoder.convert("double", base_0123456789)
self.assertEqual(uni, ":𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡")
def test_242_numm_double(self) -> None:
uni = unicoder.convert("wide", base_0123456789)
self.assertEqual(uni, ":𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡")
def test_245_numm_double(self) -> None:
uni = unicoder.doubled(base_0123456789)
self.assertEqual(uni, ":𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡")
def test_246_numm_double(self) -> None:
uni = unicoder.doubled(base_0123456789)
self.assertEqual(uni, ":𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡")
#
def test_250_norm_script(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABCXYZ")
self.assertEqual(uni, ":abcxyzABCXYZ")
def test_251_norm_script(self) -> None:
uni = unicoder.convert("script", ":abcd-f-hijklmn-pqrstuvwxyz")
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹-𝒻-𝒽𝒾𝒿𝓀𝓁𝓂𝓃-𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
uni = unicoder.convert("script", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹ℯ𝒻ℊ𝒽𝒾𝒿𝓀𝓁𝓂𝓃ℴ𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
def test_252_norm_script(self) -> None:
uni = unicoder.convert("round", ":abcd-f-hijklmn-pqrstuvwxyz")
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹-𝒻-𝒽𝒾𝒿𝓀𝓁𝓂𝓃-𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
uni = unicoder.convert("round", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹ℯ𝒻ℊ𝒽𝒾𝒿𝓀𝓁𝓂𝓃ℴ𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
def test_253_norm_script(self) -> None:
uni = unicoder.convert("script", ":A-CD--G--JK--NOPQ-STUVWXYZ")
self.assertEqual(uni, ":𝒜-𝒞𝒟--𝒢--𝒥𝒦--𝒩𝒪𝒫𝒬-𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
uni = unicoder.convert("script", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝒜ℬ𝒞𝒟ℰℱ𝒢ℋℐ𝒥𝒦ℒℳ𝒩𝒪𝒫𝒬ℛ𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
def test_254_norm_script(self) -> None:
uni = unicoder.convert("round", ":A-CD--G--JK--NOPQ-STUVWXYZ")
self.assertEqual(uni, ":𝒜-𝒞𝒟--𝒢--𝒥𝒦--𝒩𝒪𝒫𝒬-𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
uni = unicoder.convert("round", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝒜ℬ𝒞𝒟ℰℱ𝒢ℋℐ𝒥𝒦ℒℳ𝒩𝒪𝒫𝒬ℛ𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
def test_255_norm_script(self) -> None:
uni = unicoder.script(":abcd-f-hijklmn-pqrstuvwxyz")
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹-𝒻-𝒽𝒾𝒿𝓀𝓁𝓂𝓃-𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
uni = unicoder.script(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹ℯ𝒻ℊ𝒽𝒾𝒿𝓀𝓁𝓂𝓃ℴ𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
def test_256_norm_script(self) -> None:
uni = unicoder.script(":abcd-f-hijklmn-pqrstuvwxyz")
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹-𝒻-𝒽𝒾𝒿𝓀𝓁𝓂𝓃-𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
uni = unicoder.script(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝒶𝒷𝒸𝒹ℯ𝒻ℊ𝒽𝒾𝒿𝓀𝓁𝓂𝓃ℴ𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏")
def test_257_norm_script(self) -> None:
uni = unicoder.script(":A-CD--G--JK--NOPQ-STUVWXYZ")
self.assertEqual(uni, ":𝒜-𝒞𝒟--𝒢--𝒥𝒦--𝒩𝒪𝒫𝒬-𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
uni = unicoder.script(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝒜ℬ𝒞𝒟ℰℱ𝒢ℋℐ𝒥𝒦ℒℳ𝒩𝒪𝒫𝒬ℛ𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
def test_258_norm_script(self) -> None:
uni = unicoder.script(":A-CD--G--JK--NOPQ-STUVWXYZ")
self.assertEqual(uni, ":𝒜-𝒞𝒟--𝒢--𝒥𝒦--𝒩𝒪𝒫𝒬-𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
uni = unicoder.script(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝒜ℬ𝒞𝒟ℰℱ𝒢ℋℐ𝒥𝒦ℒℳ𝒩𝒪𝒫𝒬ℛ𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵")
def test_260_bold_script(self) -> None:
uni = unicoder.convert("fix", ":abcxyzABXY")
self.assertEqual(uni, ":abcxyzABXY")
def test_261_bold_script(self) -> None:
uni = unicoder.convert("fatscript", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃")
def test_262_bold_script(self) -> None:
uni = unicoder.convert("boldround", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃")
def test_263_bold_script(self) -> None:
uni = unicoder.convert("fatscript", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩")
def test_264_bold_script(self) -> None:
uni = unicoder.convert("boldround", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩")
def test_272_bold_script(self) -> None:
uni = unicoder.bold(unicoder.script(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃")
def test_273_bold_script(self) -> None:
uni = unicoder.bold(unicoder.script(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩")
def test_277_bold_script(self) -> None:
uni = unicoder.script(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃")
def test_278_bold_script(self) -> None:
uni = unicoder.script(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩")
def test_290_numm_script(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_291_numm_script(self) -> None:
uni = unicoder.convert("script", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_292_numm_script(self) -> None:
uni = unicoder.convert("round", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_295_numm_script(self) -> None:
uni = unicoder.script(base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_296_numm_script(self) -> None:
uni = unicoder.script(base_0123456789)
self.assertEqual(uni, base_0123456789)
#
def test_300_norm_courier(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
self.assertNotEqual(base_abcdefghijklmnopqrstuvwxyz,
sans_abcdefghijklmnopqrstuvwxyz)
self.assertNotEqual(mono_abcdefghijklmnopqrstuvwxyz,
sans_abcdefghijklmnopqrstuvwxyz)
def test_301_norm_courier(self) -> None:
uni = unicoder.convert("courier", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, mono_abcdefghijklmnopqrstuvwxyz)
def test_302_norm_courier(self) -> None:
uni = unicoder.convert("mono", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, mono_abcdefghijklmnopqrstuvwxyz)
def test_303_norm_courier(self) -> None:
uni = unicoder.convert("courier", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, mono_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_304_norm_courier(self) -> None:
uni = unicoder.convert("mono", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, mono_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_305_norm_courier(self) -> None:
uni = unicoder.courier(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, mono_abcdefghijklmnopqrstuvwxyz)
def test_306_norm_courier(self) -> None:
uni = unicoder.courier(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, mono_abcdefghijklmnopqrstuvwxyz)
def test_307_norm_courier(self) -> None:
uni = unicoder.courier(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, mono_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_308_norm_courier(self) -> None:
uni = unicoder.courier(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, mono_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_340_numm_courier(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_341_numm_courier(self) -> None:
uni = unicoder.convert("courier", base_0123456789)
self.assertEqual(uni, mono_0123456789)
def test_342_numm_courier(self) -> None:
uni = unicoder.convert("mono", base_0123456789)
self.assertEqual(uni, mono_0123456789)
def test_345_numm_courier(self) -> None:
uni = unicoder.courier(base_0123456789)
self.assertEqual(uni, mono_0123456789)
def test_346_numm_courier(self) -> None:
uni = unicoder.courier(base_0123456789)
self.assertEqual(uni, mono_0123456789)
def test_350_norm_initial(self) -> None:
uni = unicoder.convert("init", "Hello world")
self.assertEqual(uni, "ℍello world")
def test_351_norm_initial(self) -> None:
uni = unicoder.convert("caps", "Hello world")
self.assertEqual(uni, "ℍello world")
def test_352_norm_initial(self) -> None:
uni = unicoder.convert("init", "say Hello world")
self.assertEqual(uni, "say ℍello world")
def test_353_norm_initial(self) -> None:
uni = unicoder.convert("caps", "say Hello world")
self.assertEqual(uni, "say ℍello world")
def test_354_norm_initial(self) -> None:
uni = unicoder.convert("init", "Say Hello world")
self.assertEqual(uni, "𝕊ay Hello world")
def test_355_norm_initial(self) -> None:
uni = unicoder.convert("caps", "Say Hello world")
self.assertEqual(uni, "𝕊ay Hello world")
def test_360_norm_initial(self) -> None:
uni = unicoder.initial("Hello world")
self.assertEqual(uni, "ℍello world")
def test_361_norm_initial(self) -> None:
uni = unicoder.initial("say Hello world")
self.assertEqual(uni, "say ℍello world")
def test_362_norm_initial(self) -> None:
uni = unicoder.initial("Say Hello world")
self.assertEqual(uni, "𝕊ay Hello world")
def test_363_norm_initial(self) -> None:
uni = unicoder.initial("Say Hello world.\nYes, I will do.")
self.assertEqual(uni, "𝕊ay Hello world.\n𝕐es, I will do.")
def test_370_norm_back(self) -> None:
uni = unicoder.convert("back", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, "YXBAzyxcba:\nQPonm")
def test_371_norm_back(self) -> None:
uni = unicoder.convert("swap", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, "YXBAzyxcba:\nQPonm")
def test_372_norm_back(self) -> None:
uni = unicoder.convert("back", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "ZYXWVUTSRQPONMLKJIHGFEDCBA:")
def test_373_norm_back(self) -> None:
uni = unicoder.convert("swap", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "ZYXWVUTSRQPONMLKJIHGFEDCBA:")
def test_374_norm_back(self) -> None:
uni = unicoder.convert("back", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zyxwvutsrqponmlkjihgfedcba:")
def test_375_norm_back(self) -> None:
uni = unicoder.convert("swap", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zyxwvutsrqponmlkjihgfedcba:")
def test_376_norm_back(self) -> None:
uni = unicoder.backlines(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "ZYXWVUTSRQPONMLKJIHGFEDCBA:")
def test_377_norm_back(self) -> None:
uni = unicoder.backlines(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zyxwvutsrqponmlkjihgfedcba:")
def test_380_norm_turned(self) -> None:
uni = unicoder.convert("turned", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, ":ɐqɔxʎz∀BX⅄\nɯuodQ")
def test_381_norm_turned(self) -> None:
uni = unicoder.convert("down", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, ":ɐqɔxʎz∀BX⅄\nɯuodQ")
def test_382_norm_turned(self) -> None:
uni = unicoder.convert("turned", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":∀BƆDƎℲ⅁HIſK⅂ƜNOdQᴚSꞱ∩ΛMX⅄Z")
def test_383_norm_turned(self) -> None:
uni = unicoder.convert("down", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":∀BƆDƎℲ⅁HIſK⅂ƜNOdQᴚSꞱ∩ΛMX⅄Z")
def test_384_norm_turned(self) -> None:
uni = unicoder.convert("turned", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":ɐqɔpǝɟᵷɥᴉɾʞlɯuodbɹsʇnʌʍxʎz")
def test_385_norm_turned(self) -> None:
uni = unicoder.convert("down", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":ɐqɔpǝɟᵷɥᴉɾʞlɯuodbɹsʇnʌʍxʎz")
def test_386_norm_turned(self) -> None:
uni = unicoder.turned(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":∀BƆDƎℲ⅁HIſK⅂ƜNOdQᴚSꞱ∩ΛMX⅄Z")
def test_387_norm_turned(self) -> None:
uni = unicoder.turned(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":ɐqɔpǝɟᵷɥᴉɾʞlɯuodbɹsʇnʌʍxʎz")
def test_390_norm_flip(self) -> None:
uni = unicoder.convert("flip", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, "⅄XB∀zʎxɔqɐ:\nQdouɯ")
def test_391_norm_flip(self) -> None:
uni = unicoder.convert("ambi", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, "⅄XB∀zʎxɔqɐ:\nQdouɯ")
def test_392_norm_flip(self) -> None:
uni = unicoder.convert("flip", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "Z⅄XMΛ∩ꞱSᴚQdONƜ⅂KſIH⅁ℲƎDƆB∀:")
def test_393_norm_flip(self) -> None:
uni = unicoder.convert("ambi", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "Z⅄XMΛ∩ꞱSᴚQdONƜ⅂KſIH⅁ℲƎDƆB∀:")
def test_394_norm_flip(self) -> None:
uni = unicoder.convert("flip", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zʎxʍʌnʇsɹbdouɯlʞɾᴉɥᵷɟǝpɔqɐ:")
def test_395_norm_flip(self) -> None:
uni = unicoder.convert("ambi", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zʎxʍʌnʇsɹbdouɯlʞɾᴉɥᵷɟǝpɔqɐ:")
def test_396_norm_flip(self) -> None:
uni = unicoder.turnlines(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, "Z⅄XMΛ∩ꞱSᴚQdONƜ⅂KſIH⅁ℲƎDƆB∀:")
def test_397_norm_flip(self) -> None:
uni = unicoder.turnlines(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, "zʎxʍʌnʇsɹbdouɯlʞɾᴉɥᵷɟǝpɔqɐ:")
def test_399_norm_flip(self) -> None:
uni = unicoder.convert("turn", ":abcxyzABXY\nmnoPQ")
self.assertEqual(uni, "⅄XB∀zʎxɔqɐ:\nQdouɯ")
#
def test_400_norm_sans(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
self.assertNotEqual(base_abcdefghijklmnopqrstuvwxyz,
sans_abcdefghijklmnopqrstuvwxyz)
self.assertNotEqual(mono_abcdefghijklmnopqrstuvwxyz,
sans_abcdefghijklmnopqrstuvwxyz)
def test_401_norm_sans(self) -> None:
uni = unicoder.convert("sans", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, sans_abcdefghijklmnopqrstuvwxyz)
def test_402_norm_sans(self) -> None:
uni = unicoder.convert("vect", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, sans_abcdefghijklmnopqrstuvwxyz)
def test_403_norm_sans(self) -> None:
uni = unicoder.convert("sans", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_404_norm_sans(self) -> None:
uni = unicoder.convert("vect", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_405_norm_sans(self) -> None:
uni = unicoder.sans(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, sans_abcdefghijklmnopqrstuvwxyz)
def test_406_norm_sans(self) -> None:
uni = unicoder.sans(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, sans_abcdefghijklmnopqrstuvwxyz)
def test_407_norm_sans(self) -> None:
uni = unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_408_norm_sans(self) -> None:
uni = unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_410_numm_sans(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_411_numm_sans(self) -> None:
uni = unicoder.convert("sans", base_0123456789)
self.assertEqual(uni, sans_0123456789)
def test_412_numm_sans(self) -> None:
uni = unicoder.convert("vect", base_0123456789)
self.assertEqual(uni, sans_0123456789)
def test_415_numm_sans(self) -> None:
uni = unicoder.sans(base_0123456789)
self.assertEqual(uni, sans_0123456789)
def test_416_numm_sans(self) -> None:
uni = unicoder.sans(base_0123456789)
self.assertEqual(uni, sans_0123456789)
def test_421_bold_sans(self) -> None:
uni = unicoder.convert("boldsans", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, bold_sans_abcdefghijklmnopqrstuvwxyz)
def test_422_bold_sans(self) -> None:
uni = unicoder.convert("fatvect", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, bold_sans_abcdefghijklmnopqrstuvwxyz)
def test_423_bold_sans(self) -> None:
uni = unicoder.convert("boldsans", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, bold_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_424_bold_sans(self) -> None:
uni = unicoder.convert("fatvect", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, bold_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_425_bold_sans(self) -> None:
uni = unicoder.bold(unicoder.sans(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, bold_sans_abcdefghijklmnopqrstuvwxyz)
def test_426_bold_sans(self) -> None:
uni = unicoder.sans(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, bold_sans_abcdefghijklmnopqrstuvwxyz)
def test_427_bold_sans(self) -> None:
uni = unicoder.bold(unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, bold_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_428_bold_sans(self) -> None:
uni = unicoder.sans(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, bold_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_430_numm_bold_sans(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_431_numm_bold_sans(self) -> None:
uni = unicoder.convert("boldsans", base_0123456789)
self.assertEqual(uni, bold_sans_0123456789)
def test_432_numm_bold_sans(self) -> None:
uni = unicoder.convert("fatvect", base_0123456789)
self.assertEqual(uni, bold_sans_0123456789)
def test_435_numm_bold_sans(self) -> None:
uni = unicoder.bold(unicoder.sans(base_0123456789))
self.assertEqual(uni, bold_sans_0123456789)
def test_436_numm_bold_sans(self) -> None:
uni = unicoder.sans(unicoder.bold(base_0123456789))
self.assertEqual(uni, bold_sans_0123456789)
def test_441_ital_sans(self) -> None:
uni = unicoder.convert("italsans", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_442_ital_sans(self) -> None:
uni = unicoder.convert("slantvect", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_443_ital_sans(self) -> None:
uni = unicoder.convert("italsans", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_444_ital_sans(self) -> None:
uni = unicoder.convert("slantvect", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_445_ital_sans(self) -> None:
uni = unicoder.ital(unicoder.sans(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_446_ital_sans(self) -> None:
uni = unicoder.sans(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_447_ital_sans(self) -> None:
uni = unicoder.ital(unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_448_ital_sans(self) -> None:
uni = unicoder.sans(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_450_numm_ital_sans(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_451_numm_ital_sans(self) -> None:
uni = unicoder.convert("italsans", base_0123456789)
self.assertEqual(uni, ital_sans_0123456789)
def test_452_numm_ital_sans(self) -> None:
uni = unicoder.convert("slantvect", base_0123456789)
self.assertEqual(uni, ital_sans_0123456789)
def test_455_numm_ital_sans(self) -> None:
uni = unicoder.ital(unicoder.sans(base_0123456789))
self.assertEqual(uni, ital_sans_0123456789)
def test_456_numm_ital_sans(self) -> None:
uni = unicoder.sans(unicoder.ital(base_0123456789))
self.assertEqual(uni, ital_sans_0123456789)
def test_459_numm_ital_sans(self) -> None:
self.assertEqual(ital_sans_0123456789, sans_0123456789)
def test_461_bold_ital_sans(self) -> None:
uni = unicoder.convert("bolditalsans", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, bold_ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_462_bold_ital_sans(self) -> None:
uni = unicoder.convert("fatslantvect", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, bold_ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_463_bold_ital_sans(self) -> None:
uni = unicoder.convert("bolditalsans", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_464_bold_ital_sans(self) -> None:
uni = unicoder.convert("fatslantvect", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_465_bold_ital_sans(self) -> None:
uni = unicoder.bold(unicoder.ital(
unicoder.sans(base_abcdefghijklmnopqrstuvwxyz)))
self.assertEqual(uni, bold_ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_466_bold_ital_sans(self) -> None:
uni = unicoder.ital(unicoder.bold(
unicoder.sans(base_abcdefghijklmnopqrstuvwxyz)))
self.assertEqual(uni, bold_ital_sans_abcdefghijklmnopqrstuvwxyz)
def test_467_bold_ital_sans(self) -> None:
uni = unicoder.sans(
unicoder.bold(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz)))
def test_468_bold_ital_sans(self) -> None:
uni = unicoder.bold(
unicoder.sans(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz)))
def test_469_bold_ital_sans(self) -> None:
uni = unicoder.ital(
unicoder.sans(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz)))
def test_470_bold_ital_sans(self) -> None:
uni = unicoder.bold(unicoder.ital(
unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_471_bold_ital_sans(self) -> None:
uni = unicoder.ital(unicoder.bold(
unicoder.sans(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_472_bold_ital_sans(self) -> None:
uni = unicoder.sans(
unicoder.bold(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_473_bold_ital_sans(self) -> None:
uni = unicoder.bold(
unicoder.sans(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_474_bold_ital_sans(self) -> None:
uni = unicoder.ital(
unicoder.sans(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, bold_ital_sans_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
def test_480_numm_bold_ital_sans(self) -> None:
uni = unicoder.convert("fix", base_0123456789)
self.assertEqual(uni, base_0123456789)
def test_481_numm_bold_ital_sans(self) -> None:
uni = unicoder.convert("bolditalsans", base_0123456789)
self.assertEqual(uni, bold_ital_sans_0123456789)
def test_482_numm_bold_ital_sans(self) -> None:
uni = unicoder.convert("fatslantvect", base_0123456789)
self.assertEqual(uni, bold_ital_sans_0123456789)
def test_485_numm_bold_ital_sans(self) -> None:
uni = unicoder.bold(unicoder.ital(unicoder.sans(base_0123456789)))
self.assertEqual(uni, bold_ital_sans_0123456789)
def test_486_numm_bold_ital_sans(self) -> None:
uni = unicoder.sans(unicoder.bold(unicoder.ital(base_0123456789)))
self.assertEqual(uni, bold_ital_sans_0123456789)
def test_489_numm_bold_ital_sans(self) -> None:
self.assertEqual(bold_ital_sans_0123456789, bold_sans_0123456789)
#
def test_500_norm_frak(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_501_norm_frak(self) -> None:
uni = unicoder.convert("frak", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷")
def test_502_norm_frak(self) -> None:
uni = unicoder.convert("black", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷")
def test_503_norm_frak(self) -> None:
uni = unicoder.convert("frak", ":AB-DEFG--JKLMNOPQ-STUVWXY-")
self.assertEqual(uni, ":𝔄𝔅-𝔇𝔈𝔉𝔊--𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔-𝔖𝔗𝔘𝔙𝔚𝔛𝔜-")
uni = unicoder.convert("frak", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔄𝔅ℭ𝔇𝔈𝔉𝔊ℌℑ𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔ℜ𝔖𝔗𝔘𝔙𝔚𝔛𝔜ℨ")
def test_504_norm_frak(self) -> None:
uni = unicoder.convert("black", ":AB-DEFG--JKLMNOPQ-STUVWXY-")
self.assertEqual(uni, ":𝔄𝔅-𝔇𝔈𝔉𝔊--𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔-𝔖𝔗𝔘𝔙𝔚𝔛𝔜-")
uni = unicoder.convert("black", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔄𝔅ℭ𝔇𝔈𝔉𝔊ℌℑ𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔ℜ𝔖𝔗𝔘𝔙𝔚𝔛𝔜ℨ")
def test_505_norm_frak(self) -> None:
uni = unicoder.fraktur(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷")
def test_506_norm_frak(self) -> None:
uni = unicoder.fraktur(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷")
def test_507_norm_frak(self) -> None:
uni = unicoder.fraktur(":AB-DEFG--JKLMNOPQ-STUVWXY-")
self.assertEqual(uni, ":𝔄𝔅-𝔇𝔈𝔉𝔊--𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔-𝔖𝔗𝔘𝔙𝔚𝔛𝔜-")
def test_508_norm_frak(self) -> None:
uni = unicoder.fraktur(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝔄𝔅ℭ𝔇𝔈𝔉𝔊ℌℑ𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔ℜ𝔖𝔗𝔘𝔙𝔚𝔛𝔜ℨ")
def test_510_bold_frak(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_511_bold_frak(self) -> None:
uni = unicoder.convert("boldfrak", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟")
def test_512_bold_frak(self) -> None:
uni = unicoder.convert("boldblack", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟")
def test_513_bold_frak(self) -> None:
uni = unicoder.convert("fatfrak", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅")
def test_514_bold_frak(self) -> None:
uni = unicoder.convert("boldblack", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅")
def test_515_bold_frak(self) -> None:
uni = unicoder.bold(unicoder.fraktur(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟")
def test_516_bold_frak(self) -> None:
uni = unicoder.bold(unicoder.fraktur(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟")
def test_517_bold_frak(self) -> None:
uni = unicoder.bold(unicoder.fraktur(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅")
def test_518_bold_frak(self) -> None:
uni = unicoder.bold(unicoder.fraktur(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅")
#
def test_550_norm_button(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_551_norm_button(self) -> None:
uni = unicoder.convert("button", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩")
def test_552_norm_button(self) -> None:
uni = unicoder.convert("button", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":🅰🅱🅲🅳🅴🅵🅶🅷🅸🅹🅺🅻🅼🅽🅾🅿🆀🆁🆂🆃🆄🆅🆆🆇🆈🆉")
def test_553_numm_button(self) -> None:
uni = unicoder.convert("button", base_0123456789)
self.assertEqual(uni, ":⓿❶❷❸❹❺❻❼❽❾")
def test_555_norm_button(self) -> None:
uni = unicoder.button(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩")
def test_556_norm_button(self) -> None:
uni = unicoder.button(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":🅰🅱🅲🅳🅴🅵🅶🅷🅸🅹🅺🅻🅼🅽🅾🅿🆀🆁🆂🆃🆄🆅🆆🆇🆈🆉")
def test_557_numm_button(self) -> None:
uni = unicoder.button(base_0123456789)
self.assertEqual(uni, ":⓿❶❷❸❹❺❻❼❽❾")
def test_560_norm_circled(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_561_norm_circled(self) -> None:
uni = unicoder.convert("circ", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ")
def test_562_norm_circled(self) -> None:
uni = unicoder.convert("circ", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ")
def test_563_numm_circled(self) -> None:
uni = unicoder.convert("circ", base_0123456789)
self.assertEqual(uni, ":⓪①②③④⑤⑥⑦⑧⑨")
def test_565_norm_circled(self) -> None:
uni = unicoder.circled(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ")
def test_566_norm_circled(self) -> None:
uni = unicoder.circled(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ")
def test_567_numm_circled(self) -> None:
uni = unicoder.circled(base_0123456789)
self.assertEqual(uni, ":⓪①②③④⑤⑥⑦⑧⑨")
def test_570_norm_parens(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_571_norm_parens(self) -> None:
uni = unicoder.convert("parens", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵")
def test_572_norm_parens(self) -> None:
uni = unicoder.convert("parens", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":🄐🄑🄒🄓🄔🄕🄖🄗🄘🄙🄚🄛🄜🄝🄞🄟🄠🄡🄢🄣🄤🄥🄦🄧🄨🄩")
def test_573_numm_parens(self) -> None:
uni = unicoder.convert("parens", base_0123456789)
self.assertEqual(uni, ":⒪⑴⑵⑶⑷⑸⑹⑺⑻⑼")
def test_575_norm_parens(self) -> None:
uni = unicoder.parens(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵")
def test_576_norm_parens(self) -> None:
uni = unicoder.parens(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":🄐🄑🄒🄓🄔🄕🄖🄗🄘🄙🄚🄛🄜🄝🄞🄟🄠🄡🄢🄣🄤🄥🄦🄧🄨🄩")
def test_577_numm_parens(self) -> None:
uni = unicoder.parens(base_0123456789)
self.assertEqual(uni, ":⒪⑴⑵⑶⑷⑸⑹⑺⑻⑼")
#
def test_600_norm_greek(self) -> None:
uni = unicoder.convert("fix", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, base_abcdefghijklmnopqrstuvwxyz)
def test_601_norm_greek(self) -> None:
uni = unicoder.convert("greek", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":αβχδεφγηιικλμνοπκρστω∂ψξυζ")
def test_602_norm_greek(self) -> None:
uni = unicoder.convert("graec", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":αβχδεφγηιικλμνοπκρστω∂ψξυζ")
def test_603_norm_greek(self) -> None:
uni = unicoder.convert("greek", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ΑΒΧΔΕΦΓΗΙΙΚΛΜΝΟΠΚΡΣΤΩ∇ΨΞΥΖ")
def test_604_norm_greek(self) -> None:
uni = unicoder.convert("graec", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ΑΒΧΔΕΦΓΗΙΙΚΛΜΝΟΠΚΡΣΤΩ∇ΨΞΥΖ")
def test_605_norm_greek(self) -> None:
uni = unicoder.greek(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":αβχδεφγηιικλμνοπκρστω∂ψξυζ")
def test_606_norm_greek(self) -> None:
uni = unicoder.greek(base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":αβχδεφγηιικλμνοπκρστω∂ψξυζ")
def test_607_norm_greek(self) -> None:
uni = unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ΑΒΧΔΕΦΓΗΙΙΚΛΜΝΟΠΚΡΣΤΩ∇ΨΞΥΖ")
def test_608_norm_greek(self) -> None:
uni = unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":ΑΒΧΔΕΦΓΗΙΙΚΛΜΝΟΠΚΡΣΤΩ∇ΨΞΥΖ")
def test_621_bold_greek(self) -> None:
uni = unicoder.convert("boldgreek", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝛂𝛃𝛘𝛅𝛆𝛗𝛄𝛈𝛊𝛊𝛋𝛌𝛍𝛎𝛐𝛑𝛋𝛒𝛔𝛕𝛚𝛛𝛙𝛏𝛖𝛇")
def test_622_bold_greek(self) -> None:
uni = unicoder.convert("fatgraec", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝛂𝛃𝛘𝛅𝛆𝛗𝛄𝛈𝛊𝛊𝛋𝛌𝛍𝛎𝛐𝛑𝛋𝛒𝛔𝛕𝛚𝛛𝛙𝛏𝛖𝛇")
def test_623_bold_greek(self) -> None:
uni = unicoder.convert("boldgreek", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝚨𝚩𝚾𝚫𝚬𝚽𝚪𝚮𝚰𝚰𝚱𝚲𝚳𝚴𝚶𝚷𝚱𝚸𝚺𝚻𝛀𝛁𝚿𝚵𝚼𝚭")
def test_624_bold_greek(self) -> None:
uni = unicoder.convert("fatgraec", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝚨𝚩𝚾𝚫𝚬𝚽𝚪𝚮𝚰𝚰𝚱𝚲𝚳𝚴𝚶𝚷𝚱𝚸𝚺𝚻𝛀𝛁𝚿𝚵𝚼𝚭")
def test_625_bold_greek(self) -> None:
uni = unicoder.bold(unicoder.greek(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝛂𝛃𝛘𝛅𝛆𝛗𝛄𝛈𝛊𝛊𝛋𝛌𝛍𝛎𝛐𝛑𝛋𝛒𝛔𝛕𝛚𝛛𝛙𝛏𝛖𝛇")
def test_626_bold_greek(self) -> None:
uni = unicoder.greek(unicoder.bold(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝛂𝛃𝛘𝛅𝛆𝛗𝛄𝛈𝛊𝛊𝛋𝛌𝛍𝛎𝛐𝛑𝛋𝛒𝛔𝛕𝛚𝛛𝛙𝛏𝛖𝛇")
def test_627_bold_greek(self) -> None:
uni = unicoder.bold(unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝚨𝚩𝚾𝚫𝚬𝚽𝚪𝚮𝚰𝚰𝚱𝚲𝚳𝚴𝚶𝚷𝚱𝚸𝚺𝚻𝛀𝛁𝚿𝚵𝚼𝚭")
def test_628_bold_greek(self) -> None:
uni = unicoder.greek(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝚨𝚩𝚾𝚫𝚬𝚽𝚪𝚮𝚰𝚰𝚱𝚲𝚳𝚴𝚶𝚷𝚱𝚸𝚺𝚻𝛀𝛁𝚿𝚵𝚼𝚭")
def test_641_ital_greek(self) -> None:
uni = unicoder.convert("italgreek", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝛼𝛽𝜒𝛿𝜀𝜑𝛾𝜂𝜄𝜄𝜅𝜆𝜇𝜈𝜊𝜋𝜅𝜌𝜎𝜏𝜔𝜕𝜓𝜉𝜐𝜁")
def test_642_ital_greek(self) -> None:
uni = unicoder.convert("slantgraec", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝛼𝛽𝜒𝛿𝜀𝜑𝛾𝜂𝜄𝜄𝜅𝜆𝜇𝜈𝜊𝜋𝜅𝜌𝜎𝜏𝜔𝜕𝜓𝜉𝜐𝜁")
def test_643_ital_greek(self) -> None:
uni = unicoder.convert("italgreek", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝛢𝛣𝛸𝛥𝛦𝛷𝛤𝛨𝛪𝛪𝛫𝛬𝛭𝛮𝛰𝛱𝛫𝛲𝛴𝛵𝛺𝛻𝛹𝛯𝛶𝛧")
def test_644_ital_greek(self) -> None:
uni = unicoder.convert("slantgraec", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝛢𝛣𝛸𝛥𝛦𝛷𝛤𝛨𝛪𝛪𝛫𝛬𝛭𝛮𝛰𝛱𝛫𝛲𝛴𝛵𝛺𝛻𝛹𝛯𝛶𝛧")
def test_645_ital_greek(self) -> None:
uni = unicoder.ital(unicoder.greek(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝛼𝛽𝜒𝛿𝜀𝜑𝛾𝜂𝜄𝜄𝜅𝜆𝜇𝜈𝜊𝜋𝜅𝜌𝜎𝜏𝜔𝜕𝜓𝜉𝜐𝜁")
def test_646_ital_greek(self) -> None:
uni = unicoder.greek(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz))
self.assertEqual(uni, ":𝛼𝛽𝜒𝛿𝜀𝜑𝛾𝜂𝜄𝜄𝜅𝜆𝜇𝜈𝜊𝜋𝜅𝜌𝜎𝜏𝜔𝜕𝜓𝜉𝜐𝜁")
def test_647_ital_greek(self) -> None:
uni = unicoder.ital(unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝛢𝛣𝛸𝛥𝛦𝛷𝛤𝛨𝛪𝛪𝛫𝛬𝛭𝛮𝛰𝛱𝛫𝛲𝛴𝛵𝛺𝛻𝛹𝛯𝛶𝛧")
def test_648_ital_greek(self) -> None:
uni = unicoder.greek(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ))
self.assertEqual(uni, ":𝛢𝛣𝛸𝛥𝛦𝛷𝛤𝛨𝛪𝛪𝛫𝛬𝛭𝛮𝛰𝛱𝛫𝛲𝛴𝛵𝛺𝛻𝛹𝛯𝛶𝛧")
def test_661_bold_ital_greek(self) -> None:
uni = unicoder.convert("bolditalgreek", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝜶𝜷𝝌𝜹𝜺𝝋𝜸𝜼𝜾𝜾𝜿𝝀𝝁𝝂𝝄𝝅𝜿𝝆𝝈𝝉𝝎𝝏𝝍𝝃𝝊𝜻")
def test_662_bold_ital_greek(self) -> None:
uni = unicoder.convert("fatslantgraec", base_abcdefghijklmnopqrstuvwxyz)
self.assertEqual(uni, ":𝜶𝜷𝝌𝜹𝜺𝝋𝜸𝜼𝜾𝜾𝜿𝝀𝝁𝝂𝝄𝝅𝜿𝝆𝝈𝝉𝝎𝝏𝝍𝝃𝝊𝜻")
def test_663_bold_ital_greek(self) -> None:
uni = unicoder.convert("bolditalgreek", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_664_bold_ital_greek(self) -> None:
uni = unicoder.convert("fatslantgraec", base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_665_bold_ital_greek(self) -> None:
uni = unicoder.bold(unicoder.ital(
unicoder.greek(base_abcdefghijklmnopqrstuvwxyz)))
self.assertEqual(uni, ":𝜶𝜷𝝌𝜹𝜺𝝋𝜸𝜼𝜾𝜾𝜿𝝀𝝁𝝂𝝄𝝅𝜿𝝆𝝈𝝉𝝎𝝏𝝍𝝃𝝊𝜻")
def test_666_bold_ital_greek(self) -> None:
uni = unicoder.greek(
unicoder.bold(unicoder.ital(base_abcdefghijklmnopqrstuvwxyz)))
self.assertEqual(uni, ":𝜶𝜷𝝌𝜹𝜺𝝋𝜸𝜼𝜾𝜾𝜿𝝀𝝁𝝂𝝄𝝅𝜿𝝆𝝈𝝉𝝎𝝏𝝍𝝃𝝊𝜻")
def test_667_bold_ital_greek(self) -> None:
uni = unicoder.bold(unicoder.ital(
unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_668_bold_ital_greek(self) -> None:
uni = unicoder.ital(unicoder.bold(
unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_669_bold_ital_greek(self) -> None:
uni = unicoder.greek(
unicoder.bold(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_670_bold_ital_greek(self) -> None:
uni = unicoder.bold(
unicoder.greek(unicoder.ital(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_671_bold_ital_greek(self) -> None:
uni = unicoder.ital(
unicoder.greek(unicoder.bold(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")
def test_672_bold_ital_greek(self) -> None:
uni = unicoder.bold(
unicoder.ital(unicoder.greek(base_ABCDEFGHIJKLMNOPQRSTUVWXYZ)))
self.assertEqual(uni, ":𝜜𝜝𝜲𝜟𝜠𝜱𝜞𝜢𝜤𝜤𝜥𝜦𝜧𝜨𝜪𝜫𝜥𝜬𝜮𝜯𝜴𝜵𝜳𝜩𝜰𝜡")