소스 검색

Added divide function and unit tests

Simran Bhutani 6 년 전
부모
커밋
90cb4cf4a6
7개의 변경된 파일43개의 추가작업 그리고 5개의 파일을 삭제
  1. BIN
      Operations.class
  2. 14
    0
      Operations.ctxt
  3. 5
    0
      Operations.java
  4. BIN
      OperationsTest.class
  5. 11
    0
      OperationsTest.ctxt
  6. 8
    0
      OperationsTest.java
  7. 5
    5
      package.bluej

BIN
Operations.class 파일 보기


+ 14
- 0
Operations.ctxt 파일 보기

@@ -0,0 +1,14 @@
1
+#BlueJ class context
2
+comment0.target=Operations
3
+comment1.params=x\ y
4
+comment1.target=int\ add(int,\ int)
5
+comment1.text=\n\ The\ addition\ function.\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ the\ sum\ of\ x\ and\ y\n
6
+comment2.params=x\ y
7
+comment2.target=int\ subtract(int,\ int)
8
+comment2.text=\n\ The\ subtraction\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ y\ taken\ from\ x\n
9
+comment3.params=x\ y
10
+comment3.target=int\ multiply(int,\ int)
11
+comment3.text=\n\ The\ multiplication\ function\n\ @param\ x\ The\ first\ operand\n\ @param\ y\ The\ second\ operand\n\ @return\ x\ times\ y\n
12
+comment4.params=x\ y
13
+comment4.target=int\ divide(int,\ int)
14
+numComments=5

+ 5
- 0
Operations.java 파일 보기

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

BIN
OperationsTest.class 파일 보기


+ 11
- 0
OperationsTest.ctxt 파일 보기

@@ -0,0 +1,11 @@
1
+#BlueJ class context
2
+comment0.target=OperationsTest
3
+comment1.params=
4
+comment1.target=void\ testAdd()
5
+comment2.params=
6
+comment2.target=void\ testSubtract()
7
+comment3.params=
8
+comment3.target=void\ testMultiply()
9
+comment4.params=
10
+comment4.target=void\ divide()
11
+numComments=5

+ 8
- 0
OperationsTest.java 파일 보기

@@ -16,4 +16,12 @@ public class OperationsTest {
16 16
     public void testMultiply() throws Exception {
17 17
         Assert.assertEquals(4, Operations.multiply(2, 2));
18 18
     }
19
+
20
+    @Test
21
+    public void divide()
22
+    {
23
+        Operations operatio2 = new Operations();
24
+        Assert.assertEquals(2, Operations.divide(4, 2));
25
+    }
19 26
 }
27
+

+ 5
- 5
package.bluej 파일 보기

@@ -4,16 +4,16 @@ dependency1.to=Operations
4 4
 dependency1.type=UsesDependency
5 5
 editor.fx.0.height=722
6 6
 editor.fx.0.width=800
7
-editor.fx.0.x=320
8
-editor.fx.0.y=75
7
+editor.fx.0.x=207
8
+editor.fx.0.y=113
9 9
 objectbench.height=164
10
-objectbench.width=776
10
+objectbench.width=461
11 11
 package.divider.horizontal=0.6
12 12
 package.divider.vertical=0.6845018450184502
13 13
 package.editor.height=364
14 14
 package.editor.width=674
15
-package.editor.x=-1455
16
-package.editor.y=82
15
+package.editor.x=100
16
+package.editor.y=100
17 17
 package.frame.height=600
18 18
 package.frame.width=800
19 19
 package.numDependencies=1