@Test public void testRightIntegerInteger() { int expected = 5; int actual = cFunction.right(10, 1); assertEquals(expected, actual); }
@Test public void testRightLongInteger() { long expected = 5; long actual = cFunction.right(10L, 1); assertEquals(expected, actual); }