Searched refs:compareIntByte (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-compare/src/ |
D | Main.java | 293 public static int compareIntByte(int x, byte y) { in compareIntByte() method in Main 802 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MIN_VALUE)); in testCompareIntByte() 803 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)(Byte.MIN_VALUE + 1))); in testCompareIntByte() 804 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)-1)); in testCompareIntByte() 805 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)0)); in testCompareIntByte() 806 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, (byte)1)); in testCompareIntByte() 807 expectEquals(-1, compareIntByte(Integer.MIN_VALUE, Byte.MAX_VALUE)); in testCompareIntByte() 808 expectEquals(-1, compareIntByte(-1, (byte)0)); in testCompareIntByte() 809 expectEquals(-1, compareIntByte(-1, (byte)1)); in testCompareIntByte() 810 expectEquals(-1, compareIntByte(0, (byte)1)); in testCompareIntByte() [all …]
|