Searched refs:compareCharByte (Results 1 – 1 of 1) sorted by relevance
/art/test/567-checker-compare/src/ |
D | Main.java | 247 public static int compareCharByte(char x, byte y) { in compareCharByte() method in Main 714 expectEquals(-1, compareCharByte((char)0, (byte)1)); in testCompareCharByte() 715 expectEquals(-1, compareCharByte((char)0, Byte.MAX_VALUE)); in testCompareCharByte() 717 expectEquals(0, compareCharByte((char)0, (byte)0)); in testCompareCharByte() 718 expectEquals(0, compareCharByte((char)1, (byte)1)); in testCompareCharByte() 720 expectEquals(1, compareCharByte((char)0, Byte.MIN_VALUE)); in testCompareCharByte() 721 expectEquals(1, compareCharByte((char)0, (byte)(Byte.MIN_VALUE + 1))); in testCompareCharByte() 722 expectEquals(1, compareCharByte((char)0, (byte)-1)); in testCompareCharByte() 723 expectEquals(1, compareCharByte((char)1, (byte)-1)); in testCompareCharByte() 724 expectEquals(1, compareCharByte((char)1, (byte)0)); in testCompareCharByte() [all …]
|