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