Kaynağa Gözat

Readme updates

Kr Younger 6 yıl önce
ebeveyn
işleme
8144c3ebf8
3 değiştirilmiş dosya ile 64 ekleme ve 29 silme
  1. 6
    8
      Method Fundamentals/README.TXT
  2. 55
    16
      Method Fundamentals/package.bluej
  3. 3
    5
      README.md

+ 6
- 8
Method Fundamentals/README.TXT Dosyayı Görüntüle

41
     * `git commit` your added files to the list of your `staged` files.
41
     * `git commit` your added files to the list of your `staged` files.
42
     * `git push` your staged files to your remote repository.
42
     * `git push` your staged files to your remote repository.
43
     * submit a `pull request` which compares Zipcoder `master` to your `master`.
43
     * submit a `pull request` which compares Zipcoder `master` to your `master`.
44
-2. Begin by first ensuring the `main` method in your `ZipcodeRocks` class prints `"Zipcode Rocks!"` upon execution.  
45
-3. Complete each of the method stubs in each of the `main` classes provided.
46
-    * `main` classes are located in `src.main.java.com.zipcodewilmington.danny_do_better_exercises`
44
+2. Complete each of the method stubs in each of the `main` classes provided.
47
     * There are comments above each method stub to describe the expected behavior.
45
     * There are comments above each method stub to describe the expected behavior.
48
-4. Upon completion, open and run the `TestSuite` class to ensure that all tests have 100% success.
49
-    * `TestSuite` is located in `src.test.java.com.zipcodewilmington.danny_do_better_exercises`
46
+3. Make sure you Run Tests
47
+
50
 
48
 
51
 ## Predicate Utilities
49
 ## Predicate Utilities
52
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
50
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
53
-* Ensure each of the test cases passes successfully in the class [TestPredicateUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/PredicateUtilitiesTest.java) by completing each of the method stubs in the class [PredicateUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/PredicateUtilities.java).
51
+* Ensure each of the test cases passes successfully in the class [PredicateUtilitiesTest](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/PredicateUtilitiesTest.java) by completing each of the method stubs in the class [PredicateUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/PredicateUtilities.java).
54
 * Method Stubs to be completed
52
 * Method Stubs to be completed
55
 	* `boolean isGreaterThan(int x, int y)`
53
 	* `boolean isGreaterThan(int x, int y)`
56
 	* `boolean isLessThan(int x, int y)`
54
 	* `boolean isLessThan(int x, int y)`
59
 
57
 
60
 
58
 
61
 ## Math Utilities
59
 ## Math Utilities
62
-* Ensure each of the test cases passes successfully in the class [TestMathUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/MathUtilities.java).
60
+* Ensure each of the test cases passes successfully in the class [MathUtilitiesTest](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/TestMathUtilities.java) by completing each of the method stubs in the class [MathUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/MathUtilities.java).
63
 * Method Stubs to be completed	
61
 * Method Stubs to be completed	
64
 	* `Integer add(int, int)`
62
 	* `Integer add(int, int)`
65
 	* `Long add(long, long)`
63
 	* `Long add(long, long)`
90
 
88
 
91
 
89
 
92
 ## String Utilities
90
 ## String Utilities
93
-* Ensure each of the test cases passes successfully in the class [TestStringUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/StringUtilitiesTest.java) by completing each of the method stubs in the class [StringUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/StringUtilities.java).
91
+* Ensure each of the test cases passes successfully in the class [StringUtilitiesTest](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/StringUtilitiesTest.java) by completing each of the method stubs in the class [StringUtilities](https://git.zipcode.rocks/ZipCodeWilmington/ZCW-Lab-Fundamental-Methods/src/branch/master/Method%20Fundamentals/StringUtilities.java).
94
 * Method Stubs to be completed
92
 * Method Stubs to be completed
95
 	* `String concatenation(String, String)`
93
 	* `String concatenation(String, String)`
96
 	* `String concatenation(int, String)`
94
 	* `String concatenation(int, String)`

+ 55
- 16
Method Fundamentals/package.bluej Dosyayı Görüntüle

1
 #BlueJ package file
1
 #BlueJ package file
2
-editor.fx.0.height=722
3
-editor.fx.0.width=800
4
-editor.fx.0.x=560
5
-editor.fx.0.y=117
2
+dependency1.from=MathUtilitiesTest
3
+dependency1.to=MathUtilities
4
+dependency1.type=UsesDependency
5
+dependency2.from=PredicateUtilitiesTest
6
+dependency2.to=PredicateUtilities
7
+dependency2.type=UsesDependency
8
+dependency3.from=StringUtilitiesTest
9
+dependency3.to=StringUtilities
10
+dependency3.type=UsesDependency
11
+editor.fx.0.height=910
12
+editor.fx.0.width=1113
13
+editor.fx.0.x=703
14
+editor.fx.0.y=29
6
 objectbench.height=101
15
 objectbench.height=101
7
 objectbench.width=461
16
 objectbench.width=461
8
 package.divider.horizontal=0.6
17
 package.divider.horizontal=0.6
10
 package.editor.height=427
19
 package.editor.height=427
11
 package.editor.width=674
20
 package.editor.width=674
12
 package.editor.x=72
21
 package.editor.x=72
13
-package.editor.y=23
22
+package.editor.y=71
14
 package.frame.height=600
23
 package.frame.height=600
15
 package.frame.width=800
24
 package.frame.width=800
16
-package.numDependencies=0
17
-package.numTargets=2
25
+package.numDependencies=3
26
+package.numTargets=6
18
 package.showExtends=true
27
 package.showExtends=true
19
 package.showUses=true
28
 package.showUses=true
20
 project.charset=UTF-8
29
 project.charset=UTF-8
23
 readme.width=47
32
 readme.width=47
24
 readme.x=10
33
 readme.x=10
25
 readme.y=10
34
 readme.y=10
26
-target1.association=MathUtilitiesTest
35
+target1.association=PredicateUtilitiesTest
27
 target1.height=50
36
 target1.height=50
28
-target1.name=MathUtilities
37
+target1.name=PredicateUtilities
29
 target1.showInterface=false
38
 target1.showInterface=false
30
 target1.type=ClassTarget
39
 target1.type=ClassTarget
31
-target1.width=100
32
-target1.x=70
33
-target1.y=90
40
+target1.width=130
41
+target1.x=180
42
+target1.y=130
34
 target2.height=50
43
 target2.height=50
35
-target2.name=MathUtilitiesTest
44
+target2.name=StringUtilitiesTest
36
 target2.showInterface=false
45
 target2.showInterface=false
37
 target2.type=UnitTestTargetJunit4
46
 target2.type=UnitTestTargetJunit4
38
-target2.width=100
39
-target2.x=100
40
-target2.y=60
47
+target2.width=110
48
+target2.x=400
49
+target2.y=100
50
+target3.association=MathUtilitiesTest
51
+target3.height=50
52
+target3.name=MathUtilities
53
+target3.showInterface=false
54
+target3.type=ClassTarget
55
+target3.width=100
56
+target3.x=20
57
+target3.y=130
58
+target4.height=50
59
+target4.name=PredicateUtilitiesTest
60
+target4.showInterface=false
61
+target4.type=UnitTestTargetJunit4
62
+target4.width=130
63
+target4.x=210
64
+target4.y=100
65
+target5.association=StringUtilitiesTest
66
+target5.height=50
67
+target5.name=StringUtilities
68
+target5.showInterface=false
69
+target5.type=ClassTarget
70
+target5.width=110
71
+target5.x=370
72
+target5.y=130
73
+target6.height=50
74
+target6.name=MathUtilitiesTest
75
+target6.showInterface=false
76
+target6.type=UnitTestTargetJunit4
77
+target6.width=100
78
+target6.x=50
79
+target6.y=100

+ 3
- 5
README.md Dosyayı Görüntüle

27
     * `git commit` your added files to the list of your `staged` files.
27
     * `git commit` your added files to the list of your `staged` files.
28
     * `git push` your staged files to your remote repository.
28
     * `git push` your staged files to your remote repository.
29
     * submit a `pull request` which compares Zipcoder `master` to your `master`.
29
     * submit a `pull request` which compares Zipcoder `master` to your `master`.
30
-2. Begin by first ensuring the `main` method in your `ZipcodeRocks` class prints `"Zipcode Rocks!"` upon execution.  
31
-3. Complete each of the method stubs in each of the `main` classes provided.
32
-    * `main` classes are located in `src.main.java.com.zipcodewilmington.danny_do_better_exercises`
30
+2. Complete each of the method stubs in each of the `main` classes provided.
33
     * There are comments above each method stub to describe the expected behavior.
31
     * There are comments above each method stub to describe the expected behavior.
34
-4. Upon completion, open and run the `TestSuite` class to ensure that all tests have 100% success.
35
-    * `TestSuite` is located in `src.test.java.com.zipcodewilmington.danny_do_better_exercises`
32
+3. Make sure you Run Tests
33
+
36
 
34
 
37
 ## Predicate Utilities
35
 ## Predicate Utilities
38
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)
36
 * A _predicate_ is a clause which states something about a subject. (_e.g., **is assigning**_ in _"Leon **is assigning** homework"_)