JPP: renamed terminator interface methods to english
This commit is contained in:
parent
e964bacdcc
commit
cf276262ca
20 changed files with 190 additions and 206 deletions
|
|
@ -44,8 +44,8 @@ public class T002ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T002ᖟ value:T002ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -42,30 +42,30 @@ public class T004ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T004ᖟ value:T004ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.rȧñkGunFire(T004ᖟGunCardinalDirectionChina.class));
|
||||
Assertions.assertNotNull(value.rȧñkGunFire(T004ᖟGunCardinalDirectionKey.class));
|
||||
Assertions.assertNotNull(value.rȧñkGunFire(T004ᖟGunCardinalDirectionValue.class));
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
Assertions.assertNotNull(value.abacusRȧñkGunFire(T004ᖟGunCardinalDirectionChina.class));
|
||||
Assertions.assertNotNull(value.abacusRȧñkGunFire(T004ᖟGunCardinalDirectionKey.class));
|
||||
Assertions.assertNotNull(value.abacusRȧñkGunFire(T004ᖟGunCardinalDirectionValue.class));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOrdinalBitShift() {
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.ordinalOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.ordinalOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.ordinalOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.ordinalOctalShift(T004ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.abacusRȧñkOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.abacusRȧñkOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.abacusRȧñkOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T004ᖟ.PART_1.abacusRȧñkOctalShift(T004ᖟ.PART_4).longValue());
|
||||
|
||||
Assertions.assertEquals(1, T004ᖟ.PART_2.ordinalOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T004ᖟ.PART_2.ordinalOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T004ᖟ.PART_2.ordinalOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T004ᖟ.PART_2.ordinalOctalShift(T004ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(1, T004ᖟ.PART_2.abacusRȧñkOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T004ᖟ.PART_2.abacusRȧñkOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T004ᖟ.PART_2.abacusRȧñkOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T004ᖟ.PART_2.abacusRȧñkOctalShift(T004ᖟ.PART_4).longValue());
|
||||
|
||||
Assertions.assertEquals(2, T004ᖟ.PART_3.ordinalOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(16, T004ᖟ.PART_3.ordinalOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(128, T004ᖟ.PART_3.ordinalOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(1024, T004ᖟ.PART_3.ordinalOctalShift(T004ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(2, T004ᖟ.PART_3.abacusRȧñkOctalShift(T004ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(16, T004ᖟ.PART_3.abacusRȧñkOctalShift(T004ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(128, T004ᖟ.PART_3.abacusRȧñkOctalShift(T004ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(1024, T004ᖟ.PART_3.abacusRȧñkOctalShift(T004ᖟ.PART_4).longValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
|
|
@ -39,29 +39,29 @@ public class T005ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T005ᖟ value:T005ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOrdinalBitShift() {
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.ordinalOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.ordinalOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.ordinalOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.ordinalOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.ordinalOctalShift(T005ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.abacusRȧñkOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.abacusRȧñkOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.abacusRȧñkOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.abacusRȧñkOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T005ᖟ.PART_1.abacusRȧñkOctalShift(T005ᖟ.PART_5).longValue());
|
||||
|
||||
Assertions.assertEquals(1, T005ᖟ.PART_2.ordinalOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T005ᖟ.PART_2.ordinalOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T005ᖟ.PART_2.ordinalOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T005ᖟ.PART_2.ordinalOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(4096, T005ᖟ.PART_2.ordinalOctalShift(T005ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(1, T005ᖟ.PART_2.abacusRȧñkOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T005ᖟ.PART_2.abacusRȧñkOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T005ᖟ.PART_2.abacusRȧñkOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T005ᖟ.PART_2.abacusRȧñkOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(4096, T005ᖟ.PART_2.abacusRȧñkOctalShift(T005ᖟ.PART_5).longValue());
|
||||
|
||||
Assertions.assertEquals(4, T005ᖟ.PART_5.ordinalOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(32, T005ᖟ.PART_5.ordinalOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(256, T005ᖟ.PART_5.ordinalOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(2048, T005ᖟ.PART_5.ordinalOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(16384, T005ᖟ.PART_5.ordinalOctalShift(T005ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(4, T005ᖟ.PART_5.abacusRȧñkOctalShift(T005ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(32, T005ᖟ.PART_5.abacusRȧñkOctalShift(T005ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(256, T005ᖟ.PART_5.abacusRȧñkOctalShift(T005ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(2048, T005ᖟ.PART_5.abacusRȧñkOctalShift(T005ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(16384, T005ᖟ.PART_5.abacusRȧñkOctalShift(T005ᖟ.PART_5).longValue());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@ public class T006ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T006ᖟ value:T006ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,51 +39,51 @@ public class T008ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T008ᖟ value:T008ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOctalBitShift() {
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(3, T008ᖟ.PART_2.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(6, T008ᖟ.PART_3.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(9, T008ᖟ.PART_4.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(12, T008ᖟ.PART_5.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(15, T008ᖟ.PART_6.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(18, T008ᖟ.PART_7.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(21, T008ᖟ.PART_8.rȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(3, T008ᖟ.PART_2.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(6, T008ᖟ.PART_3.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(9, T008ᖟ.PART_4.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(12, T008ᖟ.PART_5.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(15, T008ᖟ.PART_6.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(18, T008ᖟ.PART_7.abacusRȧñkOctalBitShifter());
|
||||
Assertions.assertEquals(21, T008ᖟ.PART_8.abacusRȧñkOctalBitShifter());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOrdinalBitShift() {
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.ordinalOctalShift(T008ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(0, T008ᖟ.PART_1.abacusRȧñkOctalShift(T008ᖟ.PART_8).longValue());
|
||||
|
||||
Assertions.assertEquals(1, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(4096, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(32768, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(262144, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(2097152, T008ᖟ.PART_2.ordinalOctalShift(T008ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(1, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(8, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(64, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(512, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(4096, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(32768, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(262144, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(2097152, T008ᖟ.PART_2.abacusRȧñkOctalShift(T008ᖟ.PART_8).longValue());
|
||||
|
||||
Assertions.assertEquals(7, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(56, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(448, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(3584, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(28672, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(229376, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(1835008, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(14680064, T008ᖟ.PART_8.ordinalOctalShift(T008ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(7, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(56, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(448, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(3584, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(28672, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(229376, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(1835008, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(14680064, T008ᖟ.PART_8.abacusRȧñkOctalShift(T008ᖟ.PART_8).longValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@ public class T009ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T009ᖟ value:T009ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,45 +39,45 @@ public class T010ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T010ᖟ value:T010ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testOrdinalBitShift() {
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.ordinalOctalShift(T010ᖟ.PART_10).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(0, T010ᖟ.PART_1.abacusRȧñkOctalShift(T010ᖟ.PART_10).longValue());
|
||||
|
||||
Assertions.assertEquals(1, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(64, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(4096, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(262144, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(16777216, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(1073741824, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(68719476736L, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(4398046511104L, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(281474976710656L, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(18014398509481984L, T010ᖟ.PART_2.ordinalOctalShift(T010ᖟ.PART_10).longValue());
|
||||
Assertions.assertEquals(1, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(64, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(4096, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(262144, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(16777216, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(1073741824, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(68719476736L, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(4398046511104L, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(281474976710656L, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(18014398509481984L, T010ᖟ.PART_2.abacusRȧñkOctalShift(T010ᖟ.PART_10).longValue());
|
||||
|
||||
Assertions.assertEquals(9, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(576, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(36864, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(2359296, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(150994944, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(9663676416L, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(618475290624L, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(39582418599936L, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(2533274790395904L, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(162129586585337856L, T010ᖟ.PART_10.ordinalOctalShift(T010ᖟ.PART_10).longValue());
|
||||
Assertions.assertEquals(9, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_1).longValue());
|
||||
Assertions.assertEquals(576, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_2).longValue());
|
||||
Assertions.assertEquals(36864, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_3).longValue());
|
||||
Assertions.assertEquals(2359296, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_4).longValue());
|
||||
Assertions.assertEquals(150994944, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_5).longValue());
|
||||
Assertions.assertEquals(9663676416L, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_6).longValue());
|
||||
Assertions.assertEquals(618475290624L, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_7).longValue());
|
||||
Assertions.assertEquals(39582418599936L, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_8).longValue());
|
||||
Assertions.assertEquals(2533274790395904L, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_9).longValue());
|
||||
Assertions.assertEquals(162129586585337856L, T010ᖟ.PART_10.abacusRȧñkOctalShift(T010ᖟ.PART_10).longValue());
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
|
|
@ -39,8 +39,8 @@ public class T016ᖟTest {
|
|||
public void testBasePart() {
|
||||
for (T016ᖟ value:T016ᖟ.values()) {
|
||||
Assertions.assertNotNull(value.abacusRȧñkRingTone());
|
||||
Assertions.assertNotNull(value.rȧñkChinaSleutel());
|
||||
Assertions.assertNotNull(value.rȧñkChinaWaarde());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaKey());
|
||||
Assertions.assertNotNull(value.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,9 +38,9 @@ public class T020ᖟTest {
|
|||
|
||||
@Test
|
||||
public void testOpenLCMap() {
|
||||
Assertions.assertEquals(T020ᖟ.PART_1, T020ᖟ.亞.ráàmWaardeVanGeweerWond(T020ᖟGunOpenLocationCode.class, "2"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_2, T020ᖟ.亞.ráàmWaardeVanGeweerWond(T020ᖟGunOpenLocationCode.class, "3"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_19, T020ᖟ.亞.ráàmWaardeVanGeweerWond(T020ᖟGunOpenLocationCode.class, "W"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_20, T020ᖟ.亞.ráàmWaardeVanGeweerWond(T020ᖟGunOpenLocationCode.class, "X"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_1, T020ᖟ.亞.zerdinalMaterializeSpaceOfGunWound(T020ᖟGunOpenLocationCode.class, "2"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_2, T020ᖟ.亞.zerdinalMaterializeSpaceOfGunWound(T020ᖟGunOpenLocationCode.class, "3"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_19, T020ᖟ.亞.zerdinalMaterializeSpaceOfGunWound(T020ᖟGunOpenLocationCode.class, "W"));
|
||||
Assertions.assertEquals(T020ᖟ.PART_20, T020ᖟ.亞.zerdinalMaterializeSpaceOfGunWound(T020ᖟGunOpenLocationCode.class, "X"));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -63,21 +63,21 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
|
||||
@Test
|
||||
public void testOctalSpaceCount() {
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(2).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(3).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(4).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(5).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(6).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(7).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(8).getᴿᵈ(0).ráàmSpaceOctalCount()); // max for one octal
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(9).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(10).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(60).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(64).getᴿᵈ(0).ráàmSpaceOctalCount()); // max for 2 octals
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(87).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(128).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(300).getᴿᵈ(0).ráàmSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(512).getᴿᵈ(0).ráàmSpaceOctalCount()); // max for 3 octals
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(2).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(3).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(4).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(5).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(6).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(7).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(1, TTꞱꞱᖟGateway.亞.deliverPieSlices(8).getᴿᵈ(0).zerdinalSpaceOctalCount()); // max for one octal
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(9).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(10).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(60).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(2, TTꞱꞱᖟGateway.亞.deliverPieSlices(64).getᴿᵈ(0).zerdinalSpaceOctalCount()); // max for 2 octals
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(87).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(128).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(300).getᴿᵈ(0).zerdinalSpaceOctalCount());
|
||||
Assertions.assertEquals(3, TTꞱꞱᖟGateway.亞.deliverPieSlices(512).getᴿᵈ(0).zerdinalSpaceOctalCount()); // max for 3 octals
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
@ -93,7 +93,7 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
Map<String,String> global = new HashMap<>();
|
||||
for (int pieType:TTꞱꞱᖟGateway.亞.bakedPieSlices()) {
|
||||
for (Terminator𓄯<?> part:TTꞱꞱᖟGateway.亞.deliverPieSlices(pieType).iterableᴼᶠ()) {
|
||||
boolean check = global.containsKey(part.rȧñkChinaSleutel());
|
||||
boolean check = global.containsKey(part.abacusRȧñkChinaKey());
|
||||
if (check) {
|
||||
//System.out.println("CHINA_KEY; part: "+part.rȧñkNaam()+" pieType: "+part.teŀráàmGroote()+ " check: "+part.rȧñkChinaWaarde());
|
||||
Terminator𓄯<?> partConflict = null;
|
||||
|
|
@ -102,10 +102,10 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
break;
|
||||
}
|
||||
for (Terminator𓄯<?> part2:TTꞱꞱᖟGateway.亞.deliverPieSlices(pieType2).iterableᴼᶠ()) {
|
||||
if (part2.rȧñkChinaSleutel() == null) {
|
||||
if (part2.abacusRȧñkChinaKey() == null) {
|
||||
continue;
|
||||
}
|
||||
if (part2.rȧñkChinaSleutel().equals(part.rȧñkChinaSleutel())) {
|
||||
if (part2.abacusRȧñkChinaKey().equals(part.abacusRȧñkChinaKey())) {
|
||||
partConflict = part2;
|
||||
break;
|
||||
}
|
||||
|
|
@ -116,7 +116,7 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
}
|
||||
}
|
||||
//Assertions.assertFalse(check, "key: "+part.rȧñkChinaSleutel());
|
||||
global.put(part.rȧñkChinaSleutel(), part.rȧñkChinaWaarde());
|
||||
global.put(part.abacusRȧñkChinaKey(), part.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
Assertions.assertTrue(global.size() > 1);
|
||||
|
|
@ -127,7 +127,7 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
Map<String,String> global = new HashMap<>();
|
||||
for (int pieType:TTꞱꞱᖟGateway.亞.bakedPieSlices()) {
|
||||
for (Terminator𓄯<?> part:TTꞱꞱᖟGateway.亞.deliverPieSlices(pieType).iterableᴼᶠ()) {
|
||||
boolean check = global.containsKey(part.rȧñkChinaWaarde());
|
||||
boolean check = global.containsKey(part.abacusRȧñkChinaValue());
|
||||
if (check) {
|
||||
//System.out.println("CHINA_VALUE; part: "+part.rȧñkNaam()+" pieType: "+part.teŀráàmGroote()+ " check: "+part.rȧñkChinaWaarde());
|
||||
Terminator𓄯<?> partConflict = null;
|
||||
|
|
@ -136,10 +136,10 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
break;
|
||||
}
|
||||
for (Terminator𓄯<?> part2:TTꞱꞱᖟGateway.亞.deliverPieSlices(pieType2).iterableᴼᶠ()) {
|
||||
if (part2.rȧñkChinaSleutel() == null) {
|
||||
if (part2.abacusRȧñkChinaKey() == null) {
|
||||
continue;
|
||||
}
|
||||
if (part2.rȧñkChinaSleutel().equals(part.rȧñkChinaSleutel())) {
|
||||
if (part2.abacusRȧñkChinaKey().equals(part.abacusRȧñkChinaKey())) {
|
||||
partConflict = part2;
|
||||
break;
|
||||
}
|
||||
|
|
@ -150,7 +150,7 @@ public class TTꞱꞱᖟGatewayTest {
|
|||
}
|
||||
}
|
||||
//Assertions.assertFalse(check);
|
||||
global.put(part.rȧñkChinaWaarde(), part.rȧñkChinaWaarde());
|
||||
global.put(part.abacusRȧñkChinaValue(), part.abacusRȧñkChinaValue());
|
||||
}
|
||||
}
|
||||
Assertions.assertTrue(global.size() > 1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue