Searched refs:compareByteChar (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-compare/src/ |
D | Main.java | 170 public static int compareByteChar(byte x, char y) { in compareByteChar() method in Main 553 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)0)); in testCompareByteChar() 554 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, (char)1)); in testCompareByteChar() 555 expectEquals(-1, compareByteChar(Byte.MIN_VALUE, Character.MAX_VALUE)); in testCompareByteChar() 556 expectEquals(-1, compareByteChar((byte)-1, (char)0)); in testCompareByteChar() 557 expectEquals(-1, compareByteChar((byte)-1, (char)1)); in testCompareByteChar() 558 expectEquals(-1, compareByteChar((byte)0, (char)1)); in testCompareByteChar() 559 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, (char)(Character.MAX_VALUE - 1))); in testCompareByteChar() 560 expectEquals(-1, compareByteChar(Byte.MAX_VALUE, Character.MAX_VALUE)); in testCompareByteChar() 562 expectEquals(0, compareByteChar((byte)0, (char)0)); in testCompareByteChar() [all …]
|