コード例 #1
0
 @Test
 public void testRightIntegerInteger() {
   int expected = 5;
   int actual = cFunction.right(10, 1);
   assertEquals(expected, actual);
 }
コード例 #2
0
 @Test
 public void testRightLongInteger() {
   long expected = 5;
   long actual = cFunction.right(10L, 1);
   assertEquals(expected, actual);
 }