Skip to content

Commit

Permalink
chore: adds lesson 02 instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony D. Mays <anthony@morganlatimer.com>
  • Loading branch information
anthonydmays committed Mar 1, 2024
1 parent b853cdb commit 7339e63
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion lesson_02/README.md
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

0 comments on commit 7339e63

Please sign in to comment.