Lines Matching refs:compareByteChar
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()
563 expectEquals(0, compareByteChar((byte)1, (char)1)); in testCompareByteChar()
565 expectEquals(1, compareByteChar((byte)1, (char)0)); in testCompareByteChar()
566 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)0)); in testCompareByteChar()
567 expectEquals(1, compareByteChar(Byte.MAX_VALUE, (char)1)); in testCompareByteChar()
574 expectEquals(expected, compareByteChar(i, j)); in testCompareByteChar()