FC18: Renamed to unit tests to reflect the changed name of the method

This commit is contained in:
Willem Cazander 2025-09-06 10:01:33 +02:00
parent 0978f50805
commit 682e9c5f4c

View file

@ -50,7 +50,7 @@ public class StenoNumberBase2Test {
} }
@Test @Test
public void testBASE2Int123() throws Exception { public void testBASE2Signed123() throws Exception {
List<Integer> outX18 = new ArrayList<>(); List<Integer> outX18 = new ArrayList<>();
FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18); FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18);
writerX18.strobeNumberBASE2Signed(FCFlameFremanSignedBase2.SIGNED_0128, true, BigInteger.valueOf(123)); writerX18.strobeNumberBASE2Signed(FCFlameFremanSignedBase2.SIGNED_0128, true, BigInteger.valueOf(123));
@ -69,7 +69,7 @@ public class StenoNumberBase2Test {
} }
@Test @Test
public void testBASE2IntMax() throws Exception { public void testBASE2SignedMax() throws Exception {
List<Integer> outX18 = new ArrayList<>(); List<Integer> outX18 = new ArrayList<>();
FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18); FourCornerZion7Candlelier writerX18 = FourCornerZionStenoGrapher.writerX18(outX18);
writerX18.strobeNumberBASE2Signed(FCFlameFremanSignedBase2.SIGNED_0016, false, BigInteger.valueOf(0x7FFF)); writerX18.strobeNumberBASE2Signed(FCFlameFremanSignedBase2.SIGNED_0016, false, BigInteger.valueOf(0x7FFF));