|
@@ -41,16 +41,14 @@ From here on down, this file is in MarkDown format. (Look it up. Use the Github
|
41
|
41
|
* `git commit` your added files to the list of your `staged` files.
|
42
|
42
|
* `git push` your staged files to your remote repository.
|
43
|
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
|
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
|
49
|
## Predicate Utilities
|
52
|
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
|
52
|
* Method Stubs to be completed
|
55
|
53
|
* `boolean isGreaterThan(int x, int y)`
|
56
|
54
|
* `boolean isLessThan(int x, int y)`
|
|
@@ -59,7 +57,7 @@ From here on down, this file is in MarkDown format. (Look it up. Use the Github
|
59
|
57
|
|
60
|
58
|
|
61
|
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
|
61
|
* Method Stubs to be completed
|
64
|
62
|
* `Integer add(int, int)`
|
65
|
63
|
* `Long add(long, long)`
|
|
@@ -90,7 +88,7 @@ From here on down, this file is in MarkDown format. (Look it up. Use the Github
|
90
|
88
|
|
91
|
89
|
|
92
|
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
|
92
|
* Method Stubs to be completed
|
95
|
93
|
* `String concatenation(String, String)`
|
96
|
94
|
* `String concatenation(int, String)`
|