Пример #1
0
 public static void main(String[] args) {
   int a = Integer.MIN_VALUE;
   int b = -1;
   int c = Integer.MIN_VALUE;
   DivideTwoIntegers integer = new DivideTwoIntegers();
   System.out.println(integer.divide(a, b));
 }
Пример #2
0
 @Test
 public void test1() {
   int expected = 3;
   int actual = solution.divde(18, 5);
   Assert.assertEquals(expected, actual);
 }