Skip to content

Commit 7e34e46

Browse files
authored
docs: adds additional clarifications for oop project (#511)
* docs: add prerequisites clarifying user stories. Signed-off-by: Anthony D. Mays <[email protected]> * docs: minor adjustments Signed-off-by: Anthony D. Mays <[email protected]> * docs: adds note about test coverage Signed-off-by: Anthony D. Mays <[email protected]> --------- Signed-off-by: Anthony D. Mays <[email protected]>
1 parent 59c0059 commit 7e34e46

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

lesson_10/libraries/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"start": "node build/lesson10.js",
88
"dev": "tsc-watch --noClear -p ./tsconfig.build.json --onSuccess \"node ./build/lesson10.js\"",
9-
"test": "node --experimental-vm-modules node_modules/.bin/jest",
9+
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
1010
"compile": "tsc -p tsconfig.build.json",
1111
"prepare": "npm run compile",
1212
"pretest": "npm run compile",
@@ -42,4 +42,4 @@
4242
"csv-parser": "^3.0.0",
4343
"uuid": "^10.0.0"
4444
}
45-
}
45+
}

project_oop/README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,26 @@
55

66
For this project, you and your teammates are tasked with modeling a real-world problem using object-oriented and SOLID design principles, from ideation to implementation.
77

8+
## Prerequisites
9+
10+
Before starting work on your project, you will need to submit three user stories as feature requests in your assigned GitHub repo. These will need to be approved by the instructor before you can begin coding. Your final project submission must enable the functionality described by your user stories.
11+
812
## Project Requirements
913

1014
* All work must be submitted in your team's assigned GitHub repository.
1115
* The assignment can be completed in TypeScript or in Java.
12-
* Must include at least 5 types of objects that relate to each other.
13-
* One of your objects must be a custom data structure that provides for adding, removing, and updating items in a collection
16+
* Must include at least 5 types of objects with meaningful relattionships to each other.
17+
* One of your objects must be a custom data structure that provides for adding, removing, and updating items in a collection.
1418
* Implement at least two custom exceptions.
15-
* Write unit tests achieving 90% code coverage
16-
* Must include an integration test
17-
* Your solution must illustrate each of the SOLID principles
18-
* Each team member must contribute at least one commit containing code and tests.
19-
* Include a README for your repo including a description of the problem you're solving, the solution, and how you would improve your solution.
19+
* Write unit tests achieving 90% code coverage (using JaCoCo for Java or Jest for Typescript).
20+
* Must include an integration test.
21+
* Your solution must illustrate each of the SOLID principles.
22+
* Each team member must contribute *at least one* submitted pull request containing working code and tests.
23+
* Include a README for your repo describing the problem you're solving, the solution, and how you would improve your solution.
2024

2125
# Presentation Requirements
2226

23-
* Your total time will be limited to 10 minutes and up to 10 slides.
27+
* Your presentation should be no more than 10 minutes with a maximum of 10 slides.
2428
* Each member of the team must speak during the presentation.
2529
* Your presentation must address the following questions:
2630
* What problem were you attempting to solve?
@@ -30,7 +34,7 @@ For this project, you and your teammates are tasked with modeling a real-world p
3034

3135
## Extra Credit
3236

33-
Design a CLI that allows users to interact with your application. Check out the code in [lesson_10](/lesson_10/libraries/src/cli/) for an example.
37+
Design a CLI that allows users to interact with your application. Check out the code in [lesson_10](/lesson_10/libraries/src/cli/) for an example in TypeScript, or [this file](/lib/java/codedifferently-instructional/instructional-lib/src/main/java/com/codedifferently/instructional/quiz/QuizProctor.java) for an example in Java.
3438

3539
## Timeline
3640

0 commit comments

Comments
 (0)