mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
add test for mergePairs
This commit is contained in:
parent
5c446f1b62
commit
ed001cf25d
|
@ -0,0 +1,20 @@
|
|||
package org.teavm.classlib.impl.unicode;
|
||||
|
||||
import static org.junit.Assert.assertFalse;
|
||||
|
||||
public class UnicodeSupportTest {
|
||||
|
||||
private static boolean pairsEqual(final int[] pairs, final int index1, final int index2) {
|
||||
return pairs[index1] == pairs[index2] && pairs[index1 + 1] == pairs[index2 + 1];
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test_getDigitValues() {
|
||||
final int[] digitValues = UnicodeSupport.getDigitValues();
|
||||
if (digitValues.length >= 4) {
|
||||
// there are no duplicates, so the last two pairs should not be identical
|
||||
assertFalse(pairsEqual(digitValues, digitValues.length - 4, digitValues.length - 2));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user