Home
last modified time | relevance | path

Searched refs:compareInts (Results 1 – 1 of 1) sorted by relevance

/art/test/567-checker-compare/src/
DMain.java124 private static int compareInts(int x, int y) { in compareInts() method in Main
435 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE + 1)); in testCompareInts()
436 expectEquals(-1, compareInts(Integer.MIN_VALUE, -1)); in testCompareInts()
437 expectEquals(-1, compareInts(Integer.MIN_VALUE, 0)); in testCompareInts()
438 expectEquals(-1, compareInts(Integer.MIN_VALUE, 1)); in testCompareInts()
439 expectEquals(-1, compareInts(Integer.MIN_VALUE, Integer.MAX_VALUE)); in testCompareInts()
440 expectEquals(-1, compareInts(-1, 0)); in testCompareInts()
441 expectEquals(-1, compareInts(-1, 1)); in testCompareInts()
442 expectEquals(-1, compareInts(0, 1)); in testCompareInts()
444 expectEquals(0, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE)); in testCompareInts()
[all …]