-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Anthony D. Mays <anthony@morganlatimer.com>
- Loading branch information
1 parent
b853cdb
commit 7339e63
Showing
1 changed file
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,27 @@ | ||
# TODO(anthonydmays): Add stuff | ||
# Lesson 02 | ||
|
||
## Homework | ||
|
||
1. Read CODE 26-27 | ||
1. Complete Lesson 02 quiz | ||
|
||
## Lesson 02 Quiz Instructions | ||
|
||
For this assignment, you will complete a quiz by modifying a Java application. Within the quiz project, there are tests that you will need to make pass in order to complete the assignment. Here are the instructions for completing the assignment: | ||
|
||
1. Make sure to sync your fork to pull in the latest changes. | ||
1. Open the [Lesson2.java][lesson-2-quiz] file located in the [quiz/lesson_02_quiz/src/main/java/com/codedifferently/lesson_02_quiz/][lesson-2-dir] directory. | ||
1. Update the code to provide the correct answers to the given questions. | ||
1. When ready to test, run the following command in the quiz directory using the terminal: | ||
|
||
```bash | ||
./gradlew test | ||
``` | ||
|
||
1. If you encounter test failures, open the [test report][test-report] for more information on which questions need to be fixed. | ||
1. Once all tests pass, submit your work by creating a pull request (PR). | ||
|
||
|
||
[lesson-2-quiz]: lesson_02/quiz/lesson_02_quiz/src/main/java/com/codedifferently/lesson_02_quiz/Lesson2.java | ||
[lesson-2-dir]: ./quiz/lesson_02_quiz/src/main/java/com/codedifferently/lesson_02_quiz/ | ||
[test-report]: ./quiz/lesson_02_quiz/src/test/java/com/codedifferently/lesson_02_quiz/Lesson2Test.java |