Bläddra i källkod

added divison

William Brown 6 år sedan
förälder
incheckning
0edb6a8a88
2 ändrade filer med 2 tillägg och 2 borttagningar
  1. 1
    1
      Operations.java
  2. 1
    1
      OperationsTest.java

+ 1
- 1
Operations.java Visa fil

@@ -31,7 +31,7 @@ public class Operations {
31 31
         return x * y;
32 32
     }
33 33
     
34
-    public static int divide(int x, int y){
34
+    public static int divide(int x, int y){ 
35 35
         return x / y;
36 36
     }
37 37
 }

+ 1
- 1
OperationsTest.java Visa fil

@@ -18,7 +18,7 @@ public class OperationsTest {
18 18
     }
19 19
     
20 20
     @Test
21
-    public void testDivide() throws Exception {
21
+    public void testDivide() throws Exception { 
22 22
         Assert.assertEquals(2, Operations.divide(4, 2));
23 23
     }
24 24
 }