Searched refs:negateLong (Results 1 – 1 of 1) sorted by relevance
739 Method negateLong = negateMethod(long.class); in testNegate() local740 assertEquals(0L, negateLong.invoke(null, 0)); in testNegate()741 assertEquals(-1L, negateLong.invoke(null, 1)); in testNegate()742 assertEquals(Long.MIN_VALUE, negateLong.invoke(null, Long.MIN_VALUE)); in testNegate()