diff --git a/core/src/love/distributedrebirth/demo4d/screen/BasePartRenderer.java b/core/src/love/distributedrebirth/demo4d/screen/BasePartRenderer.java index 4b4f4759..11789359 100644 --- a/core/src/love/distributedrebirth/demo4d/screen/BasePartRenderer.java +++ b/core/src/love/distributedrebirth/demo4d/screen/BasePartRenderer.java @@ -48,7 +48,7 @@ public class BasePartRenderer extends ImGuiRendererMain { ImGui.text("Base:"); ImGui.sameLine(); - ImGui.text(baseParts[0].BãßNaam()); + ImGui.text(baseParts[0].BãßClassNaam()); ImGui.sameLine(); ImGui.combo("Type", selectedBasePart, items); @@ -73,35 +73,35 @@ public class BasePartRenderer extends ImGuiRendererMain { ImGui.tableNextColumn(); ImGui.text(Integer.toString(part.ordinal())); ImGui.tableNextColumn(); - ImGui.text(part.getIdentifierTone()); + ImGui.text(part.BȍőnIdentifierTone()); ImGui.tableNextColumn(); - ImGui.text(part.getIdentifierLetter()); + ImGui.text(part.BȍőnIdentifierLetter()); ImGui.tableNextColumn(); - ImGui.text(part.getChinaKey()); + ImGui.text(part.BȍőnChinaKey()); ImGui.tableNextColumn(); - ImGui.text(part.getChinaValue()); + ImGui.text(part.BȍőnChinaValue()); ImGui.tableNextColumn(); if (part instanceof BãßBȍőnPartAlt1ʸᴰ) { - ImGui.text(BãßBȍőnPartAlt1ʸᴰ.class.cast(part).getAlt1Value()); + ImGui.text(BãßBȍőnPartAlt1ʸᴰ.class.cast(part).BȍőnAlt1Value()); } else { ImGui.text(""); } ImGui.tableNextColumn(); if (part instanceof BãßBȍőnPartAlt2ʸᴰ) { - ImGui.text(BãßBȍőnPartAlt2ʸᴰ.class.cast(part).getAlt2Value()); + ImGui.text(BãßBȍőnPartAlt2ʸᴰ.class.cast(part).BȍőnAlt2Value()); } else { ImGui.text(""); } ImGui.tableNextColumn(); if (part instanceof BãßBȍőnPartAlt3ʸᴰ) { - ImGui.text(BãßBȍőnPartAlt3ʸᴰ.class.cast(part).getAlt3Value()); + ImGui.text(BãßBȍőnPartAlt3ʸᴰ.class.cast(part).BȍőnAlt3Value()); } else { ImGui.text(""); } ImGui.tableNextColumn(); if (part instanceof BãßBȍőnPartAlt4ʸᴰ) { - ImGui.text(BãßBȍőnPartAlt4ʸᴰ.class.cast(part).getAlt4Value()); + ImGui.text(BãßBȍőnPartAlt4ʸᴰ.class.cast(part).BȍőnAlt4Value()); } else { ImGui.text(""); } diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/T20PartScore.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/T20PartScore.java index b2f28bac..545cab84 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/T20PartScore.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/T20PartScore.java @@ -45,7 +45,7 @@ public enum T20PartScore implements BãßBȍőnPartAlt3ʸᴰ { ; private static final Map OPENLC_MAP = Collections.unmodifiableMap( - Arrays.asList(values()).stream().collect(Collectors.toMap(v -> v.getAlt3Value(), v -> v))); + Arrays.asList(values()).stream().collect(Collectors.toMap(v -> v.BȍőnAlt3Value(), v -> v))); private final BãßBȍőnCoffinOpenʸᴰ BBC = BãßBȍőnCoffinOpenʸᴰ.newInstance(); public BãßBȍőnCoffinʸᴰ GET_BBC() { return BBC; } public static int LENGTH() { return values().length; }; diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt1ʸᴰ.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt1ʸᴰ.java index 47710c3a..77147d2a 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt1ʸᴰ.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt1ʸᴰ.java @@ -5,15 +5,15 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ; @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") public interface BãßBȍőnPartAlt1ʸᴰ> extends BãßBȍőnPartʸᴰ { - default String getAlt1Value() { + default String BȍőnAlt1Value() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ALT_1_VALUE); } - default String staticAlt1Name() { + default String BãßAlt1Name() { return getClass().getAnnotation(BãßBȍőnPartAlt1Infoʸᴰ.class).name(); } - default String staticAlt1Website() { + default String BãßAlt1Website() { return getClass().getAnnotation(BãßBȍőnPartAlt1Infoʸᴰ.class).website(); } } diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt2ʸᴰ.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt2ʸᴰ.java index e6b297ce..27274064 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt2ʸᴰ.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt2ʸᴰ.java @@ -5,15 +5,15 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ; @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") public interface BãßBȍőnPartAlt2ʸᴰ> extends BãßBȍőnPartAlt1ʸᴰ { - default String getAlt2Value() { + default String BȍőnAlt2Value() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ALT_2_VALUE); } - default String staticAlt2Name() { + default String BãßAlt2Name() { return getClass().getAnnotation(BãßBȍőnPartAlt2Infoʸᴰ.class).name(); } - default String staticAlt2Website() { + default String BãßAlt2Website() { return getClass().getAnnotation(BãßBȍőnPartAlt2Infoʸᴰ.class).website(); } } diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt3ʸᴰ.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt3ʸᴰ.java index b4935dd1..ec77dc66 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt3ʸᴰ.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt3ʸᴰ.java @@ -5,15 +5,15 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ; @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") public interface BãßBȍőnPartAlt3ʸᴰ> extends BãßBȍőnPartAlt2ʸᴰ { - default String getAlt3Value() { + default String BȍőnAlt3Value() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ALT_3_VALUE); } - default String staticAlt3Name() { + default String BãßAlt3Name() { return getClass().getAnnotation(BãßBȍőnPartAlt3Infoʸᴰ.class).name(); } - default String staticAlt3Website() { + default String BãßAlt3Website() { return getClass().getAnnotation(BãßBȍőnPartAlt3Infoʸᴰ.class).website(); } } diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt4ʸᴰ.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt4ʸᴰ.java index 832a1612..8f456dc1 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt4ʸᴰ.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartAlt4ʸᴰ.java @@ -5,15 +5,15 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ; @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") public interface BãßBȍőnPartAlt4ʸᴰ> extends BãßBȍőnPartAlt3ʸᴰ { - default String getAlt4Value() { + default String BȍőnAlt4Value() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ALT_4_VALUE); } - default String staticAlt4Name() { + default String BãßAlt4Name() { return getClass().getAnnotation(BãßBȍőnPartAlt4Infoʸᴰ.class).name(); } - default String staticAlt4Website() { + default String BãßAlt4Website() { return getClass().getAnnotation(BãßBȍőnPartAlt4Infoʸᴰ.class).website(); } } diff --git a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartʸᴰ.java b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartʸᴰ.java index a27f4882..d44dd5e5 100644 --- a/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartʸᴰ.java +++ b/numberxd/src/main/love/distributedrebirth/numberxd/base2t/part/BãßBȍőnPartʸᴰ.java @@ -10,36 +10,36 @@ import love.distributedrebirth.bassboonyd.BãßBȍőnEnumSetʸᴰ; @BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天") public interface BãßBȍőnPartʸᴰ> extends BãßBȍőnEnumSetʸᴰ, BãßBȍőnCoffinStoreʸᴰ { - default String getIdentifierTone() { + default String BȍőnIdentifierTone() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ID_TONE); } - default String getIdentifierLetter() { + default String BȍőnIdentifierLetter() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.ID_LETTER); } - default String getChinaKey() { + default String BȍőnChinaKey() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.CHINA_KEY); } - default String getChinaValue() { + default String BȍőnChinaValue() { return GET_BBC().GET_STR(BãßBȍőnPartKeyʸᴰ.CHINA_VALUE); } @SuppressWarnings("unchecked") - default T staticValueOfTone(String identifierTone) { + default T BãßValueOfTone(String identifierTone) { Map mapTone = GET_BBC().GET_MAP_OBJ(BãßBȍőnPartKeyʸᴰ.MAP_TONE); if (mapTone.isEmpty()) { - mapTone.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.getIdentifierTone(), v -> v))); + mapTone.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.BȍőnIdentifierTone(), v -> v))); } return (T) mapTone.get(identifierTone); } @SuppressWarnings("unchecked") - default T staticValueOfChina(String chinaKey) { + default T BãßValueOfChina(String chinaKey) { Map mapChina = GET_BBC().GET_MAP_OBJ(BãßBȍőnPartKeyʸᴰ.MAP_CHINA); if (mapChina.isEmpty()) { - mapChina.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.getChinaKey(), v -> v))); + mapChina.putAll(BãßInstancesStream().collect(Collectors.toMap(v -> v.BȍőnChinaKey(), v -> v))); } return (T) mapChina.get(chinaKey); } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/BasePartFactoryTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/BasePartFactoryTest.java index 99edec8e..2bbae370 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/BasePartFactoryTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/BasePartFactoryTest.java @@ -25,8 +25,8 @@ public class BasePartFactoryTest { Map global = new HashMap<>(); for (int base:BasePartFactory.INSTANCE.BãßBases()) { for (BãßBȍőnPartʸᴰ part:BasePartFactory.INSTANCE.BãßBuildPartsByBase(base)) { - Assertions.assertFalse(global.containsKey(part.getChinaKey())); - global.put(part.getChinaKey(), part.getChinaValue()); + Assertions.assertFalse(global.containsKey(part.BȍőnChinaKey())); + global.put(part.BȍőnChinaKey(), part.BȍőnChinaValue()); } } Assertions.assertTrue(global.size() > 1); @@ -37,8 +37,8 @@ public class BasePartFactoryTest { Map global = new HashMap<>(); for (int base:BasePartFactory.INSTANCE.BãßBases()) { for (BãßBȍőnPartʸᴰ part:BasePartFactory.INSTANCE.BãßBuildPartsByBase(base)) { - Assertions.assertFalse(global.containsKey(part.getChinaValue())); - global.put(part.getChinaValue(), part.getChinaValue()); + Assertions.assertFalse(global.containsKey(part.BȍőnChinaValue())); + global.put(part.BȍőnChinaValue(), part.BȍőnChinaValue()); } } Assertions.assertTrue(global.size() > 1); @@ -50,11 +50,11 @@ public class BasePartFactoryTest { Map global = new HashMap<>(); for (int base:BasePartFactory.INSTANCE.BãßBases()) { for (BãßBȍőnPartʸᴰ part:BasePartFactory.INSTANCE.BãßBuildPartsByBase(base)) { - if (global.containsKey(part.getIdentifierTone())) { + if (global.containsKey(part.BȍőnIdentifierTone())) { duplicate = true; break; } - global.put(part.getIdentifierTone(), part.getChinaValue()); + global.put(part.BȍőnIdentifierTone(), part.BȍőnChinaValue()); } } Assertions.assertTrue(global.size() > 1); @@ -67,11 +67,11 @@ public class BasePartFactoryTest { Map global = new HashMap<>(); for (int base:BasePartFactory.INSTANCE.BãßBases()) { for (BãßBȍőnPartʸᴰ part:BasePartFactory.INSTANCE.BãßBuildPartsByBase(base)) { - if (global.containsKey(part.getIdentifierLetter())) { + if (global.containsKey(part.BȍőnIdentifierLetter())) { duplicate = true; break; } - global.put(part.getIdentifierLetter(), part.getChinaValue()); + global.put(part.BȍőnIdentifierLetter(), part.BȍőnChinaValue()); } } Assertions.assertTrue(global.size() > 1); diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T02PartBinaryTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T02PartBinaryTest.java index 3b2c8d84..1730cef2 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T02PartBinaryTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T02PartBinaryTest.java @@ -11,22 +11,22 @@ public class T02PartBinaryTest { @Test public void testBasePart() { for (T02PartBinary value:T02PartBinary.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T02PartBinary.PART_1, T02PartBinary.PART_1.staticValueOfTone("˧")); - Assertions.assertEquals(T02PartBinary.PART_2, T02PartBinary.PART_1.staticValueOfTone("꜔")); + Assertions.assertEquals(T02PartBinary.PART_1, T02PartBinary.PART_1.BãßValueOfTone("˧")); + Assertions.assertEquals(T02PartBinary.PART_2, T02PartBinary.PART_1.BãßValueOfTone("꜔")); } @Test public void testChinaMap() { - Assertions.assertEquals(T02PartBinary.PART_1, T02PartBinary.PART_1.staticValueOfChina("低")); - Assertions.assertEquals(T02PartBinary.PART_2, T02PartBinary.PART_1.staticValueOfChina("高")); + Assertions.assertEquals(T02PartBinary.PART_1, T02PartBinary.PART_1.BãßValueOfChina("低")); + Assertions.assertEquals(T02PartBinary.PART_2, T02PartBinary.PART_1.BãßValueOfChina("高")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T03PartTritTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T03PartTritTest.java index 3ee39a9c..df38f80a 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T03PartTritTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T03PartTritTest.java @@ -11,24 +11,24 @@ public class T03PartTritTest { @Test public void testBasePart() { for (T03PartTrit value:T03PartTrit.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T03PartTrit.PART_1, T03PartTrit.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T03PartTrit.PART_2, T03PartTrit.PART_1.staticValueOfTone("˧")); - Assertions.assertEquals(T03PartTrit.PART_3, T03PartTrit.PART_1.staticValueOfTone("˨")); + Assertions.assertEquals(T03PartTrit.PART_1, T03PartTrit.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T03PartTrit.PART_2, T03PartTrit.PART_1.BãßValueOfTone("˧")); + Assertions.assertEquals(T03PartTrit.PART_3, T03PartTrit.PART_1.BãßValueOfTone("˨")); } @Test public void testChinaMap() { - Assertions.assertEquals(T03PartTrit.PART_1, T03PartTrit.PART_1.staticValueOfChina("一")); - Assertions.assertEquals(T03PartTrit.PART_2, T03PartTrit.PART_1.staticValueOfChina("二")); - Assertions.assertEquals(T03PartTrit.PART_3, T03PartTrit.PART_1.staticValueOfChina("三")); + Assertions.assertEquals(T03PartTrit.PART_1, T03PartTrit.PART_1.BãßValueOfChina("一")); + Assertions.assertEquals(T03PartTrit.PART_2, T03PartTrit.PART_1.BãßValueOfChina("二")); + Assertions.assertEquals(T03PartTrit.PART_3, T03PartTrit.PART_1.BãßValueOfChina("三")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T04PartQuadTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T04PartQuadTest.java index 3a2ff6e4..a03f03bf 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T04PartQuadTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T04PartQuadTest.java @@ -11,13 +11,13 @@ public class T04PartQuadTest { @Test public void testBasePart() { for (T04PartQuad value:T04PartQuad.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @@ -39,17 +39,17 @@ public class T04PartQuadTest { @Test public void testToneMap() { - Assertions.assertEquals(T04PartQuad.PART_1, T04PartQuad.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T04PartQuad.PART_2, T04PartQuad.PART_1.staticValueOfTone("꜒")); - Assertions.assertEquals(T04PartQuad.PART_3, T04PartQuad.PART_1.staticValueOfTone("꜖")); - Assertions.assertEquals(T04PartQuad.PART_4, T04PartQuad.PART_1.staticValueOfTone("˩")); + Assertions.assertEquals(T04PartQuad.PART_1, T04PartQuad.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T04PartQuad.PART_2, T04PartQuad.PART_1.BãßValueOfTone("꜒")); + Assertions.assertEquals(T04PartQuad.PART_3, T04PartQuad.PART_1.BãßValueOfTone("꜖")); + Assertions.assertEquals(T04PartQuad.PART_4, T04PartQuad.PART_1.BãßValueOfTone("˩")); } @Test public void testChinaMap() { - Assertions.assertEquals(T04PartQuad.PART_1, T04PartQuad.PART_1.staticValueOfChina("北")); - Assertions.assertEquals(T04PartQuad.PART_2, T04PartQuad.PART_1.staticValueOfChina("東")); - Assertions.assertEquals(T04PartQuad.PART_3, T04PartQuad.PART_1.staticValueOfChina("西")); - Assertions.assertEquals(T04PartQuad.PART_4, T04PartQuad.PART_1.staticValueOfChina("南")); + Assertions.assertEquals(T04PartQuad.PART_1, T04PartQuad.PART_1.BãßValueOfChina("北")); + Assertions.assertEquals(T04PartQuad.PART_2, T04PartQuad.PART_1.BãßValueOfChina("東")); + Assertions.assertEquals(T04PartQuad.PART_3, T04PartQuad.PART_1.BãßValueOfChina("西")); + Assertions.assertEquals(T04PartQuad.PART_4, T04PartQuad.PART_1.BãßValueOfChina("南")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T05PartPentalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T05PartPentalTest.java index 77ae045c..944c10e3 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T05PartPentalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T05PartPentalTest.java @@ -11,28 +11,28 @@ public class T05PartPentalTest { @Test public void testBasePart() { for (T05PartPental value:T05PartPental.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T05PartPental.PART_1, T05PartPental.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T05PartPental.PART_2, T05PartPental.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T05PartPental.PART_3, T05PartPental.PART_1.staticValueOfTone("˧")); - Assertions.assertEquals(T05PartPental.PART_4, T05PartPental.PART_1.staticValueOfTone("˨")); - Assertions.assertEquals(T05PartPental.PART_5, T05PartPental.PART_1.staticValueOfTone("˩")); + Assertions.assertEquals(T05PartPental.PART_1, T05PartPental.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T05PartPental.PART_2, T05PartPental.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T05PartPental.PART_3, T05PartPental.PART_1.BãßValueOfTone("˧")); + Assertions.assertEquals(T05PartPental.PART_4, T05PartPental.PART_1.BãßValueOfTone("˨")); + Assertions.assertEquals(T05PartPental.PART_5, T05PartPental.PART_1.BãßValueOfTone("˩")); } @Test public void testChinaMap() { - Assertions.assertEquals(T05PartPental.PART_1, T05PartPental.PART_1.staticValueOfChina("火")); - Assertions.assertEquals(T05PartPental.PART_2, T05PartPental.PART_1.staticValueOfChina("水")); - Assertions.assertEquals(T05PartPental.PART_3, T05PartPental.PART_1.staticValueOfChina("木")); - Assertions.assertEquals(T05PartPental.PART_4, T05PartPental.PART_1.staticValueOfChina("金")); - Assertions.assertEquals(T05PartPental.PART_5, T05PartPental.PART_1.staticValueOfChina("土")); + Assertions.assertEquals(T05PartPental.PART_1, T05PartPental.PART_1.BãßValueOfChina("火")); + Assertions.assertEquals(T05PartPental.PART_2, T05PartPental.PART_1.BãßValueOfChina("水")); + Assertions.assertEquals(T05PartPental.PART_3, T05PartPental.PART_1.BãßValueOfChina("木")); + Assertions.assertEquals(T05PartPental.PART_4, T05PartPental.PART_1.BãßValueOfChina("金")); + Assertions.assertEquals(T05PartPental.PART_5, T05PartPental.PART_1.BãßValueOfChina("土")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T06PartSeximalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T06PartSeximalTest.java index 4d88dfe7..54d8673c 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T06PartSeximalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T06PartSeximalTest.java @@ -11,29 +11,29 @@ public class T06PartSeximalTest { @Test public void testBasePart() { for (T06PartSeximal value:T06PartSeximal.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T06PartSeximal.PART_1, T06PartSeximal.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T06PartSeximal.PART_2, T06PartSeximal.PART_1.staticValueOfTone("˨")); - Assertions.assertEquals(T06PartSeximal.PART_5, T06PartSeximal.PART_1.staticValueOfTone("꜊")); - Assertions.assertEquals(T06PartSeximal.PART_6, T06PartSeximal.PART_1.staticValueOfTone("꜏")); + Assertions.assertEquals(T06PartSeximal.PART_1, T06PartSeximal.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T06PartSeximal.PART_2, T06PartSeximal.PART_1.BãßValueOfTone("˨")); + Assertions.assertEquals(T06PartSeximal.PART_5, T06PartSeximal.PART_1.BãßValueOfTone("꜊")); + Assertions.assertEquals(T06PartSeximal.PART_6, T06PartSeximal.PART_1.BãßValueOfTone("꜏")); } @Test public void testChinaMap() { - Assertions.assertEquals(T06PartSeximal.PART_1, T06PartSeximal.PART_1.staticValueOfChina("四")); - Assertions.assertEquals(T06PartSeximal.PART_2, T06PartSeximal.PART_1.staticValueOfChina("五")); - Assertions.assertEquals(T06PartSeximal.PART_5, T06PartSeximal.PART_1.staticValueOfChina("八")); - Assertions.assertEquals(T06PartSeximal.PART_6, T06PartSeximal.PART_1.staticValueOfChina("九")); + Assertions.assertEquals(T06PartSeximal.PART_1, T06PartSeximal.PART_1.BãßValueOfChina("四")); + Assertions.assertEquals(T06PartSeximal.PART_2, T06PartSeximal.PART_1.BãßValueOfChina("五")); + Assertions.assertEquals(T06PartSeximal.PART_5, T06PartSeximal.PART_1.BãßValueOfChina("八")); + Assertions.assertEquals(T06PartSeximal.PART_6, T06PartSeximal.PART_1.BãßValueOfChina("九")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T07PartPlanItTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T07PartPlanItTest.java index 7e4ac30f..484a9b85 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T07PartPlanItTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T07PartPlanItTest.java @@ -11,29 +11,29 @@ public class T07PartPlanItTest { @Test public void testBasePart() { for (T07PartPlanIt value:T07PartPlanIt.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T07PartPlanIt.PART_1, T07PartPlanIt.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T07PartPlanIt.PART_2, T07PartPlanIt.PART_1.staticValueOfTone("꜉")); - Assertions.assertEquals(T07PartPlanIt.PART_6, T07PartPlanIt.PART_1.staticValueOfTone("꜐")); - Assertions.assertEquals(T07PartPlanIt.PART_7, T07PartPlanIt.PART_1.staticValueOfTone("˩")); + Assertions.assertEquals(T07PartPlanIt.PART_1, T07PartPlanIt.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T07PartPlanIt.PART_2, T07PartPlanIt.PART_1.BãßValueOfTone("꜉")); + Assertions.assertEquals(T07PartPlanIt.PART_6, T07PartPlanIt.PART_1.BãßValueOfTone("꜐")); + Assertions.assertEquals(T07PartPlanIt.PART_7, T07PartPlanIt.PART_1.BãßValueOfTone("˩")); } @Test public void testChinaMap() { - Assertions.assertEquals(T07PartPlanIt.PART_1, T07PartPlanIt.PART_1.staticValueOfChina("♎︎")); - Assertions.assertEquals(T07PartPlanIt.PART_2, T07PartPlanIt.PART_1.staticValueOfChina("♏︎")); - Assertions.assertEquals(T07PartPlanIt.PART_6, T07PartPlanIt.PART_1.staticValueOfChina("♑︎")); - Assertions.assertEquals(T07PartPlanIt.PART_7, T07PartPlanIt.PART_1.staticValueOfChina("♈︎")); + Assertions.assertEquals(T07PartPlanIt.PART_1, T07PartPlanIt.PART_1.BãßValueOfChina("♎︎")); + Assertions.assertEquals(T07PartPlanIt.PART_2, T07PartPlanIt.PART_1.BãßValueOfChina("♏︎")); + Assertions.assertEquals(T07PartPlanIt.PART_6, T07PartPlanIt.PART_1.BãßValueOfChina("♑︎")); + Assertions.assertEquals(T07PartPlanIt.PART_7, T07PartPlanIt.PART_1.BãßValueOfChina("♈︎")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T08PartOctalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T08PartOctalTest.java index fc5e634f..245f2172 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T08PartOctalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T08PartOctalTest.java @@ -11,32 +11,32 @@ public class T08PartOctalTest { @Test public void testBasePart() { for (T08PartOctal value:T08PartOctal.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); - Assertions.assertNotNull(value.getAlt2Value()); - Assertions.assertNotNull(value.staticAlt2Name()); - Assertions.assertNotNull(value.staticAlt2Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); + Assertions.assertNotNull(value.BȍőnAlt2Value()); + Assertions.assertNotNull(value.BãßAlt2Name()); + Assertions.assertNotNull(value.BãßAlt2Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T08PartOctal.PART_1, T08PartOctal.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T08PartOctal.PART_2, T08PartOctal.PART_1.staticValueOfTone("˩")); - Assertions.assertEquals(T08PartOctal.PART_7, T08PartOctal.PART_1.staticValueOfTone("꜍")); - Assertions.assertEquals(T08PartOctal.PART_8, T08PartOctal.PART_1.staticValueOfTone("꜑")); + Assertions.assertEquals(T08PartOctal.PART_1, T08PartOctal.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T08PartOctal.PART_2, T08PartOctal.PART_1.BãßValueOfTone("˩")); + Assertions.assertEquals(T08PartOctal.PART_7, T08PartOctal.PART_1.BãßValueOfTone("꜍")); + Assertions.assertEquals(T08PartOctal.PART_8, T08PartOctal.PART_1.BãßValueOfTone("꜑")); } @Test public void testChinaMap() { - Assertions.assertEquals(T08PartOctal.PART_1, T08PartOctal.PART_1.staticValueOfChina("心")); - Assertions.assertEquals(T08PartOctal.PART_2, T08PartOctal.PART_1.staticValueOfChina("頭")); - Assertions.assertEquals(T08PartOctal.PART_7, T08PartOctal.PART_1.staticValueOfChina("肢")); - Assertions.assertEquals(T08PartOctal.PART_8, T08PartOctal.PART_1.staticValueOfChina("腳")); + Assertions.assertEquals(T08PartOctal.PART_1, T08PartOctal.PART_1.BãßValueOfChina("心")); + Assertions.assertEquals(T08PartOctal.PART_2, T08PartOctal.PART_1.BãßValueOfChina("頭")); + Assertions.assertEquals(T08PartOctal.PART_7, T08PartOctal.PART_1.BãßValueOfChina("肢")); + Assertions.assertEquals(T08PartOctal.PART_8, T08PartOctal.PART_1.BãßValueOfChina("腳")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T10PartDecimalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T10PartDecimalTest.java index c15a4fd4..8776883e 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T10PartDecimalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T10PartDecimalTest.java @@ -11,26 +11,26 @@ public class T10PartDecimalTest { @Test public void testBasePart() { for (T10PartDecimal value:T10PartDecimal.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T10PartDecimal.PART_1, T10PartDecimal.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T10PartDecimal.PART_2, T10PartDecimal.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T10PartDecimal.PART_9, T10PartDecimal.PART_1.staticValueOfTone("꜕")); - Assertions.assertEquals(T10PartDecimal.PART_10, T10PartDecimal.PART_1.staticValueOfTone("꜖")); + Assertions.assertEquals(T10PartDecimal.PART_1, T10PartDecimal.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T10PartDecimal.PART_2, T10PartDecimal.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T10PartDecimal.PART_9, T10PartDecimal.PART_1.BãßValueOfTone("꜕")); + Assertions.assertEquals(T10PartDecimal.PART_10, T10PartDecimal.PART_1.BãßValueOfTone("꜖")); } @Test public void testChinaMap() { - Assertions.assertEquals(T10PartDecimal.PART_1, T10PartDecimal.PART_1.staticValueOfChina("零")); - Assertions.assertEquals(T10PartDecimal.PART_2, T10PartDecimal.PART_1.staticValueOfChina("壹")); - Assertions.assertEquals(T10PartDecimal.PART_9, T10PartDecimal.PART_1.staticValueOfChina("捌")); - Assertions.assertEquals(T10PartDecimal.PART_10, T10PartDecimal.PART_1.staticValueOfChina("玖")); + Assertions.assertEquals(T10PartDecimal.PART_1, T10PartDecimal.PART_1.BãßValueOfChina("零")); + Assertions.assertEquals(T10PartDecimal.PART_2, T10PartDecimal.PART_1.BãßValueOfChina("壹")); + Assertions.assertEquals(T10PartDecimal.PART_9, T10PartDecimal.PART_1.BãßValueOfChina("捌")); + Assertions.assertEquals(T10PartDecimal.PART_10, T10PartDecimal.PART_1.BãßValueOfChina("玖")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T11PartUndecimalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T11PartUndecimalTest.java index 257f0f24..dc9a731a 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T11PartUndecimalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T11PartUndecimalTest.java @@ -11,26 +11,26 @@ public class T11PartUndecimalTest { @Test public void testBasePart() { for (T11PartUndecimal value:T11PartUndecimal.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T11PartUndecimal.PART_1, T11PartUndecimal.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T11PartUndecimal.PART_2, T11PartUndecimal.PART_1.staticValueOfTone("꜈")); - Assertions.assertEquals(T11PartUndecimal.PART_10, T11PartUndecimal.PART_1.staticValueOfTone("꜐")); - Assertions.assertEquals(T11PartUndecimal.PART_11, T11PartUndecimal.PART_1.staticValueOfTone("˩")); + Assertions.assertEquals(T11PartUndecimal.PART_1, T11PartUndecimal.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T11PartUndecimal.PART_2, T11PartUndecimal.PART_1.BãßValueOfTone("꜈")); + Assertions.assertEquals(T11PartUndecimal.PART_10, T11PartUndecimal.PART_1.BãßValueOfTone("꜐")); + Assertions.assertEquals(T11PartUndecimal.PART_11, T11PartUndecimal.PART_1.BãßValueOfTone("˩")); } @Test public void testChinaMap() { - Assertions.assertEquals(T11PartUndecimal.PART_1, T11PartUndecimal.PART_1.staticValueOfChina("走")); - Assertions.assertEquals(T11PartUndecimal.PART_2, T11PartUndecimal.PART_1.staticValueOfChina("跑")); - Assertions.assertEquals(T11PartUndecimal.PART_10, T11PartUndecimal.PART_1.staticValueOfChina("春")); - Assertions.assertEquals(T11PartUndecimal.PART_11, T11PartUndecimal.PART_1.staticValueOfChina("耦")); + Assertions.assertEquals(T11PartUndecimal.PART_1, T11PartUndecimal.PART_1.BãßValueOfChina("走")); + Assertions.assertEquals(T11PartUndecimal.PART_2, T11PartUndecimal.PART_1.BãßValueOfChina("跑")); + Assertions.assertEquals(T11PartUndecimal.PART_10, T11PartUndecimal.PART_1.BãßValueOfChina("春")); + Assertions.assertEquals(T11PartUndecimal.PART_11, T11PartUndecimal.PART_1.BãßValueOfChina("耦")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T12PartUncialTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T12PartUncialTest.java index 27c19a8d..227085d2 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T12PartUncialTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T12PartUncialTest.java @@ -11,29 +11,29 @@ public class T12PartUncialTest { @Test public void testBasePart() { for (T12PartUncial value:T12PartUncial.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T12PartUncial.PART_1, T12PartUncial.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T12PartUncial.PART_2, T12PartUncial.PART_1.staticValueOfTone("˧")); - Assertions.assertEquals(T12PartUncial.PART_11, T12PartUncial.PART_1.staticValueOfTone("꜏")); - Assertions.assertEquals(T12PartUncial.PART_12, T12PartUncial.PART_1.staticValueOfTone("꜑")); + Assertions.assertEquals(T12PartUncial.PART_1, T12PartUncial.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T12PartUncial.PART_2, T12PartUncial.PART_1.BãßValueOfTone("˧")); + Assertions.assertEquals(T12PartUncial.PART_11, T12PartUncial.PART_1.BãßValueOfTone("꜏")); + Assertions.assertEquals(T12PartUncial.PART_12, T12PartUncial.PART_1.BãßValueOfTone("꜑")); } @Test public void testChinaMap() { - Assertions.assertEquals(T12PartUncial.PART_1, T12PartUncial.PART_1.staticValueOfChina("日")); - Assertions.assertEquals(T12PartUncial.PART_2, T12PartUncial.PART_1.staticValueOfChina("月")); - Assertions.assertEquals(T12PartUncial.PART_11, T12PartUncial.PART_1.staticValueOfChina("黼")); - Assertions.assertEquals(T12PartUncial.PART_12, T12PartUncial.PART_1.staticValueOfChina("亞")); + Assertions.assertEquals(T12PartUncial.PART_1, T12PartUncial.PART_1.BãßValueOfChina("日")); + Assertions.assertEquals(T12PartUncial.PART_2, T12PartUncial.PART_1.BãßValueOfChina("月")); + Assertions.assertEquals(T12PartUncial.PART_11, T12PartUncial.PART_1.BãßValueOfChina("黼")); + Assertions.assertEquals(T12PartUncial.PART_12, T12PartUncial.PART_1.BãßValueOfChina("亞")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T16PartHexTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T16PartHexTest.java index fdbff976..f6638c88 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T16PartHexTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T16PartHexTest.java @@ -11,29 +11,29 @@ public class T16PartHexTest { @Test public void testBasePart() { for (T16PartHex value:T16PartHex.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T16PartHex.PART_1, T16PartHex.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T16PartHex.PART_2, T16PartHex.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T16PartHex.PART_15, T16PartHex.PART_1.staticValueOfTone("꜐")); - Assertions.assertEquals(T16PartHex.PART_16, T16PartHex.PART_1.staticValueOfTone("꜑")); + Assertions.assertEquals(T16PartHex.PART_1, T16PartHex.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T16PartHex.PART_2, T16PartHex.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T16PartHex.PART_15, T16PartHex.PART_1.BãßValueOfTone("꜐")); + Assertions.assertEquals(T16PartHex.PART_16, T16PartHex.PART_1.BãßValueOfTone("꜑")); } @Test public void testChinaMap() { - Assertions.assertEquals(T16PartHex.PART_1, T16PartHex.PART_1.staticValueOfChina("氫")); - Assertions.assertEquals(T16PartHex.PART_2, T16PartHex.PART_1.staticValueOfChina("氦")); - Assertions.assertEquals(T16PartHex.PART_15, T16PartHex.PART_1.staticValueOfChina("磷")); - Assertions.assertEquals(T16PartHex.PART_16, T16PartHex.PART_1.staticValueOfChina("硫")); + Assertions.assertEquals(T16PartHex.PART_1, T16PartHex.PART_1.BãßValueOfChina("氫")); + Assertions.assertEquals(T16PartHex.PART_2, T16PartHex.PART_1.BãßValueOfChina("氦")); + Assertions.assertEquals(T16PartHex.PART_15, T16PartHex.PART_1.BãßValueOfChina("磷")); + Assertions.assertEquals(T16PartHex.PART_16, T16PartHex.PART_1.BãßValueOfChina("硫")); } } diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T20PartScoreTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T20PartScoreTest.java index f43085e2..12bb8357 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T20PartScoreTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T20PartScoreTest.java @@ -11,30 +11,30 @@ public class T20PartScoreTest { @Test public void testBasePart() { for (T20PartScore value:T20PartScore.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); - Assertions.assertNotNull(value.getAlt1Value()); - Assertions.assertNotNull(value.staticAlt1Name()); - Assertions.assertNotNull(value.staticAlt1Website()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); + Assertions.assertNotNull(value.BȍőnAlt1Value()); + Assertions.assertNotNull(value.BãßAlt1Name()); + Assertions.assertNotNull(value.BãßAlt1Website()); } } @Test public void testToneMap() { - Assertions.assertEquals(T20PartScore.PART_1, T20PartScore.PART_1.staticValueOfTone("˥")); - Assertions.assertEquals(T20PartScore.PART_2, T20PartScore.PART_1.staticValueOfTone("˦")); - Assertions.assertEquals(T20PartScore.PART_19, T20PartScore.PART_1.staticValueOfTone("꜐")); - Assertions.assertEquals(T20PartScore.PART_20, T20PartScore.PART_1.staticValueOfTone("꜑")); + Assertions.assertEquals(T20PartScore.PART_1, T20PartScore.PART_1.BãßValueOfTone("˥")); + Assertions.assertEquals(T20PartScore.PART_2, T20PartScore.PART_1.BãßValueOfTone("˦")); + Assertions.assertEquals(T20PartScore.PART_19, T20PartScore.PART_1.BãßValueOfTone("꜐")); + Assertions.assertEquals(T20PartScore.PART_20, T20PartScore.PART_1.BãßValueOfTone("꜑")); } @Test public void testChinaMap() { - Assertions.assertEquals(T20PartScore.PART_1, T20PartScore.PART_1.staticValueOfChina("尧")); - Assertions.assertEquals(T20PartScore.PART_2, T20PartScore.PART_1.staticValueOfChina("泽")); - Assertions.assertEquals(T20PartScore.PART_19, T20PartScore.PART_1.staticValueOfChina("仄")); - Assertions.assertEquals(T20PartScore.PART_20, T20PartScore.PART_1.staticValueOfChina("幺")); + Assertions.assertEquals(T20PartScore.PART_1, T20PartScore.PART_1.BãßValueOfChina("尧")); + Assertions.assertEquals(T20PartScore.PART_2, T20PartScore.PART_1.BãßValueOfChina("泽")); + Assertions.assertEquals(T20PartScore.PART_19, T20PartScore.PART_1.BãßValueOfChina("仄")); + Assertions.assertEquals(T20PartScore.PART_20, T20PartScore.PART_1.BãßValueOfChina("幺")); } @Test diff --git a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T60SexagesimalTest.java b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T60SexagesimalTest.java index b8cf872f..bfc28d8f 100644 --- a/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T60SexagesimalTest.java +++ b/numberxd/src/test/love/distributedrebirth/numberxd/base2t/T60SexagesimalTest.java @@ -11,26 +11,26 @@ public class T60SexagesimalTest { @Test public void testBasePart() { for (T60PartSexagesimal value:T60PartSexagesimal.values()) { - Assertions.assertNotNull(value.getIdentifierTone()); - Assertions.assertNotNull(value.getIdentifierLetter()); - Assertions.assertNotNull(value.getChinaKey()); - Assertions.assertNotNull(value.getChinaValue()); + Assertions.assertNotNull(value.BȍőnIdentifierTone()); + Assertions.assertNotNull(value.BȍőnIdentifierLetter()); + Assertions.assertNotNull(value.BȍőnChinaKey()); + Assertions.assertNotNull(value.BȍőnChinaValue()); } } @Test public void testToneMap() { - Assertions.assertEquals(T60PartSexagesimal.PART_1, T60PartSexagesimal.PART_1.staticValueOfTone("˧˩˥")); - Assertions.assertEquals(T60PartSexagesimal.PART_2, T60PartSexagesimal.PART_1.staticValueOfTone("˧˥˦")); - Assertions.assertEquals(T60PartSexagesimal.PART_59, T60PartSexagesimal.PART_1.staticValueOfTone("꜍꜍꜏")); - Assertions.assertEquals(T60PartSexagesimal.PART_60, T60PartSexagesimal.PART_1.staticValueOfTone("꜑꜑꜏")); + Assertions.assertEquals(T60PartSexagesimal.PART_1, T60PartSexagesimal.PART_1.BãßValueOfTone("˧˩˥")); + Assertions.assertEquals(T60PartSexagesimal.PART_2, T60PartSexagesimal.PART_1.BãßValueOfTone("˧˥˦")); + Assertions.assertEquals(T60PartSexagesimal.PART_59, T60PartSexagesimal.PART_1.BãßValueOfTone("꜍꜍꜏")); + Assertions.assertEquals(T60PartSexagesimal.PART_60, T60PartSexagesimal.PART_1.BãßValueOfTone("꜑꜑꜏")); } @Test public void testChinaMap() { - Assertions.assertEquals(T60PartSexagesimal.PART_1, T60PartSexagesimal.PART_1.staticValueOfChina("牛")); - Assertions.assertEquals(T60PartSexagesimal.PART_2, T60PartSexagesimal.PART_1.staticValueOfChina("鸡")); - Assertions.assertEquals(T60PartSexagesimal.PART_59, T60PartSexagesimal.PART_1.staticValueOfChina("薯")); - Assertions.assertEquals(T60PartSexagesimal.PART_60, T60PartSexagesimal.PART_1.staticValueOfChina("蘋")); + Assertions.assertEquals(T60PartSexagesimal.PART_1, T60PartSexagesimal.PART_1.BãßValueOfChina("牛")); + Assertions.assertEquals(T60PartSexagesimal.PART_2, T60PartSexagesimal.PART_1.BãßValueOfChina("鸡")); + Assertions.assertEquals(T60PartSexagesimal.PART_59, T60PartSexagesimal.PART_1.BãßValueOfChina("薯")); + Assertions.assertEquals(T60PartSexagesimal.PART_60, T60PartSexagesimal.PART_1.BãßValueOfChina("蘋")); } }