114115116117118119120
assertTrue(score(Integer.MAX_VALUE).compareTo(score(10)) < 0); } private MapperWithScore score(int score) { return new MapperWithScore(null, score); }
78798081828384