Searched refs:negateLong (Results 1 – 1 of 1) sorted by relevance
815 Method negateLong = negateMethod(long.class); in testNegate() local816 assertEquals(0L, negateLong.invoke(null, 0)); in testNegate()817 assertEquals(-1L, negateLong.invoke(null, 1)); in testNegate()818 assertEquals(Long.MIN_VALUE, negateLong.invoke(null, Long.MIN_VALUE)); in testNegate()